mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 02:41:35 +01:00
Test website publication and remove collab account
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { type PlaywrightTestConfig } from "@playwright/test";
|
||||
import { type PlaywrightTestConfig, devices } from "@playwright/test";
|
||||
|
||||
const config: PlaywrightTestConfig = {
|
||||
webServer: {
|
||||
@@ -9,7 +9,14 @@ const config: PlaywrightTestConfig = {
|
||||
baseURL: "http://localhost:4173"
|
||||
},
|
||||
testDir: "tests",
|
||||
testMatch: /(.+\.)?(test|spec)\.ts/
|
||||
testMatch: /(.+\.)?(test|spec)\.ts/,
|
||||
// Firefox and Webkit are not packaged yet, see https://github.com/NixOS/nixpkgs/issues/288826
|
||||
projects: [
|
||||
{
|
||||
name: "Chromium",
|
||||
use: { ...devices["Desktop Chrome"] }
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user