35 lines
844 B
TypeScript
35 lines
844 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/storybook",
|
|
outputDir: "./artifacts/tests/storybook/results",
|
|
reporter: [
|
|
["list"],
|
|
[
|
|
"html",
|
|
{
|
|
outputFolder: "./artifacts/tests/storybook/report",
|
|
open: "never",
|
|
},
|
|
],
|
|
[
|
|
"junit",
|
|
{ outputFile: "./artifacts/tests/storybook/results.xml" },
|
|
],
|
|
],
|
|
use: {
|
|
baseURL: "http://127.0.0.1:6006",
|
|
trace: "retain-on-failure",
|
|
screenshot: "only-on-failure",
|
|
},
|
|
webServer: {
|
|
command:
|
|
"corepack pnpm build:storybook && node scripts/serve-static.ts artifacts/storybook/static 6006",
|
|
url: "http://127.0.0.1:6006",
|
|
reuseExistingServer: false,
|
|
},
|
|
projects: [
|
|
{ name: "chromium-workshop", use: { ...devices["Desktop Chrome"] } },
|
|
],
|
|
});
|