Skip to content

Commit

Permalink
chore: downgrade karma & update playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
smalluban committed Feb 7, 2024
1 parent cbfec99 commit df0d274
Show file tree
Hide file tree
Showing 4 changed files with 476 additions and 188 deletions.
4 changes: 2 additions & 2 deletions karma.conf.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = (config) => {
reporters: ["dots"].concat(IS_COVERAGE ? ["coverage"] : []),
browsers: IS_COVERAGE
? ["ChromeHeadless"]
: ["ChromeHeadless", "FirefoxHeadless", "WebkitHeadless"],
: ["WebkitHeadless", "ChromeHeadless", "FirefoxHeadless"],
client: {
captureConsole: false,
jasmine: {
Expand All @@ -36,7 +36,7 @@ module.exports = (config) => {
},
autoWatch: true,
singleRun: true,
concurrency: 1,
concurrency: Infinity,
port: 9876 + Number(IS_COVERAGE),
});
};
Loading

0 comments on commit df0d274

Please sign in to comment.