Skip to content

Commit 4526d7e

Browse files
fix ci
1 parent d9cf4e6 commit 4526d7e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

test/src/button-contributions.spec.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ describe("Platform match tests", function () {
1111
before(async function () {
1212
browser = await puppeteer.launch({
1313
headless: "new",
14+
args: [
15+
'--no-sandbox',
16+
'--disable-setuid-sandbox',
17+
'--disable-dev-shm-usage',
18+
'--disable-accelerated-2d-canvas',
19+
'--no-first-run',
20+
'--no-zygote',
21+
'--single-process',
22+
'--disable-gpu'
23+
]
1424
});
1525
page = await browser.newPage();
1626
});
@@ -66,6 +76,16 @@ describe("Query Selector Tests", function () {
6676
before(async function () {
6777
browser = await puppeteer.launch({
6878
headless: "new",
79+
args: [
80+
'--no-sandbox',
81+
'--disable-setuid-sandbox',
82+
'--disable-dev-shm-usage',
83+
'--disable-accelerated-2d-canvas',
84+
'--no-first-run',
85+
'--no-zygote',
86+
'--single-process',
87+
'--disable-gpu'
88+
]
6989
});
7090
page = await browser.newPage();
7191
});

0 commit comments

Comments
 (0)