Skip to content

Commit

Permalink
Add linux snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenpetryk committed Mar 7, 2024
1 parent 72d4f40 commit 55679dc
Show file tree
Hide file tree
Showing 206 changed files with 7 additions and 11 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 7 additions & 11 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import { devices, ViewportSize } from "@playwright/test"

const viewport: ViewportSize = { width: 500, height: 500 }

const CI = process.env.CI === "true"

export default defineConfig({
testDir: "./e2e",
timeout: 30 * 1000,
Expand All @@ -31,13 +29,11 @@ export default defineConfig({
},
},
},
projects: CI
? [{ name: "chromium", use: { ...devices["Desktop Chrome"], viewport } }]
: [
{ name: "chromium", use: { ...devices["Desktop Chrome"], viewport } },
{ name: "firefox", use: { ...devices["Desktop Firefox"], viewport } },
{ name: "Mobile Chrome", use: { ...devices["Pixel 5"], viewport } },
{ name: "webkit", use: { ...devices["Desktop Safari"], viewport } },
{ name: "Mobile Safari", use: { ...devices["iPhone 12"], viewport } },
],
projects: [
{ name: "chromium", use: { ...devices["Desktop Chrome"], viewport } },
{ name: "firefox", use: { ...devices["Desktop Firefox"], viewport } },
{ name: "Mobile Chrome", use: { ...devices["Pixel 5"], viewport } },
{ name: "webkit", use: { ...devices["Desktop Safari"], viewport } },
{ name: "Mobile Safari", use: { ...devices["iPhone 12"], viewport } },
],
})

0 comments on commit 55679dc

Please sign in to comment.