Skip to content

Instantly share code, notes, and snippets.

@vinaymavi
Last active April 4, 2019 21:20
Show Gist options
  • Save vinaymavi/190389c8d29a962b16d3b25fd5a33abc to your computer and use it in GitHub Desktop.
Save vinaymavi/190389c8d29a962b16d3b25fd5a33abc to your computer and use it in GitHub Desktop.
This Gist contains karma configuration for CI and CD setup for angular projects.
browsers: ["HeadlessChrome"],
customLaunchers: {
HeadlessChrome: {
base: "ChromeHeadless",
flags: [
"--no-sandbox", // required to run without privileges in Docker
"--disable-web-security",
"--disable-gpu",
"--remote-debugging-port=9222"
]
}
},
singleRun: true,
autoWatch: false,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment