Test website publication and remove collab account

This commit is contained in:
thiloho
2024-09-01 13:37:28 +02:00
parent 187287ec4f
commit 7a6e7f16c5
3 changed files with 36 additions and 4 deletions

View File

@@ -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;