13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
export default {
|
|
testDir: "./tests",
|
|
use: {
|
|
baseURL: process.env.STAGING_URL || "https://gravl.homelab.local",
|
|
headless: true,
|
|
screenshot: "only-on-failure",
|
|
},
|
|
projects: [{
|
|
name: "chromium",
|
|
use: { browserName: "chromium" }
|
|
}]
|
|
};
|