Skip to content

Commit 2c6282e

Browse files
committed
Fiddle with options
1 parent 970a7e1 commit 2c6282e

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

playwright.config.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,7 @@ export default defineConfig({
2727
channel: "chromium",
2828
...(process.env.CI
2929
? {
30-
args: [
31-
"--enable-gpu",
32-
"--use-gl=angle",
33-
"--use-angle=gl-egl",
34-
"--ignore-gpu-blocklist",
35-
"--enable-unsafe-swiftshader",
36-
],
30+
args: ["--enable-gpu"],
3731
}
3832
: {}),
3933
},

scripts/sync-working-groups/sync-working-groups.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ export type WorkingGroupMeeting =
4545

4646
async function main() {
4747
if (!API_KEY) {
48-
console.warn(
49-
"GOOGLE_CALENDAR_API_KEY is not set, skipping sync (using existing file)",
50-
)
48+
console.warn("GOOGLE_CALENDAR_API_KEY is not set, skipping sync (using existing file)")
5149
return
5250
}
5351

test/e2e/community-events.spec.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,6 @@ test("map tooltip appears on marker hover", async ({ page }) => {
142142
test("event type filters hide cards and lock the last active tag", async ({
143143
page,
144144
}) => {
145-
await page.evaluate(() => {
146-
document.documentElement.querySelector("canvas")?.remove()
147-
})
148-
149145
const pastEventsSection = page
150146
.locator("section")
151147
.filter({
@@ -259,10 +255,6 @@ test("event type filters hide cards and lock the last active tag", async ({
259255
test("upcoming and past sections only show events on the correct side of now", async ({
260256
page,
261257
}) => {
262-
await page.evaluate(() => {
263-
document.documentElement.querySelector("canvas")?.remove()
264-
})
265-
266258
const upcomingSection = page
267259
.locator("section")
268260
.filter({

0 commit comments

Comments
 (0)