Skip to content

Commit

Permalink
chore: fix karma runner config
Browse files Browse the repository at this point in the history
  • Loading branch information
smalluban committed Jan 8, 2024
1 parent 435befc commit cc26b5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19
node-version: 20
cache: "npm"
- uses: browser-actions/setup-chrome@latest
- uses: browser-actions/setup-firefox@latest

- name: Install dependencies
run: |
npm install
npx playwright install-deps webkit
npx playwright install webkit
- name: Run tests
run: |
npm run test
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = (config) => {
reporters: ["dots"].concat(IS_COVERAGE ? ["coverage"] : []),
browsers: IS_COVERAGE
? ["ChromeHeadless"]
: ["ChromeHeadless", "WebkitHeadless", "FirefoxHeadless"],
: ["ChromeHeadless", "WebkitHeadless"],
client: {
captureConsole: false,
jasmine: {
Expand Down

0 comments on commit cc26b5a

Please sign in to comment.