Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:7.2.2-chromium
  2.  
  3. $ npm i
  4. $ ng test --watch=false --browsers=ChromeHeadlessNoSandbox
  5.  
  6. browsers: ['ChromeHeadlessNoSandbox'],
  7. customLaunchers: {
  8. ChromeHeadlessNoSandbox: {
  9. base: 'ChromeHeadless',
  10. flags: ['--no-sandbox'] // for running within Docker
  11. }
  12. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement