17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
export default {
|
|
testDir: "./tests",
|
|
use: {
|
|
baseURL: process.env.STAGING_URL || "http://localhost:5173",
|
|
screenshot: "only-on-failure",
|
|
},
|
|
// Remove webServer config for now since it's already running
|
|
projects: [
|
|
{
|
|
name: "api",
|
|
use: {
|
|
// API context - no browser required
|
|
}
|
|
}
|
|
]
|
|
};
|