Skip to content

Commit ef78e52

Browse files
authoredJan 16, 2025··
fix: CI browser/karma (#2204)
* fix: browser tests * chore: remove redundant replacement
1 parent 88e33a9 commit ef78e52

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed
 

‎.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ jobs:
5656
5757
browser:
5858
runs-on: ubuntu-latest
59+
container:
60+
image: mcr.microsoft.com/playwright:v1.48.0-jammy
61+
env:
62+
HOME: "/root"
5963
steps:
6064
- uses: actions/checkout@v3
6165
with:
@@ -64,7 +68,6 @@ jobs:
6468
with:
6569
node-version: ${{ env.NODE_JS }}
6670
- uses: ./.github/actions/npm
67-
- run: npx playwright install --with-deps
6871
- run: npm run build:esm
6972
- run: npm run test:browser
7073

‎karma.conf.cjs

+21-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
1+
const playwright = require("playwright");
12
const webpack = require("webpack");
2-
const playwright = require('playwright');
33

44
process.env.CHROME_BIN = playwright.chromium.executablePath();
55
process.env.FIREFOX_BIN = playwright.firefox.executablePath();
66

77
module.exports = function (config) {
8-
config.set({
8+
const configuration = {
99
frameworks: ["webpack", "mocha"],
1010
files: ["src/**/!(node).spec.ts"],
1111
preprocessors: {
1212
"src/**/!(node).spec.ts": ["webpack"]
1313
},
1414
envPreprocessor: ["CI"],
1515
reporters: ["progress"],
16-
browsers: ["ChromeHeadless", "FirefoxHeadless"],
16+
browsers: process.env.CI
17+
? ["ChromeHeadlessCI", "FirefoxHeadless"]
18+
: ["ChromeHeadless", "FirefoxHeadless"],
19+
customLaunchers: {
20+
ChromeHeadlessCI: {
21+
base: "ChromeHeadless",
22+
flags: [
23+
"--no-sandbox",
24+
"--disable-gpu",
25+
"--disable-dev-shm-usage",
26+
"--disable-software-rasterizer",
27+
"--disable-extensions"
28+
]
29+
}
30+
},
1731
singleRun: true,
1832
client: {
1933
mocha: {
@@ -28,7 +42,7 @@ module.exports = function (config) {
2842
plugins: [
2943
new webpack.DefinePlugin({
3044
"process.env.CI": process.env.CI || false,
31-
"process.env.DISPLAY": "Browser",
45+
"process.env.DISPLAY": "Browser"
3246
}),
3347
new webpack.ProvidePlugin({
3448
process: "process/browser.js"
@@ -45,5 +59,7 @@ module.exports = function (config) {
4559
stats: { warnings: false },
4660
devtool: "inline-source-map"
4761
}
48-
});
62+
};
63+
64+
config.set(configuration);
4965
};

0 commit comments

Comments
 (0)
Please sign in to comment.