Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/6523835d5df75f70ba2f98d38eaa0ceca662dbe5041b6a5a479a27d8f703a4c215fb8fb402035fd7eb8e9097c87a13f29c110ac7739c20a34cc66a843a5d0a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

59 lines
No EOL
1.4 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "defaultPlaywrightConfig", {
enumerable: true,
get: function() {
return defaultPlaywrightConfig;
}
});
const _test = require("@playwright/test");
const defaultPlaywrightConfig = {
testMatch: '{app,pages}/**/*.spec.{t,j}s',
fullyParallel: true,
forbidOnly: process.env.CI === 'true',
retries: process.env.CI === 'true' ? 2 : 0,
reporter: [
[
'list'
],
[
'html',
{
open: 'never'
}
]
],
use: {
baseURL: 'http://127.0.0.1:3000',
trace: 'on-first-retry'
},
projects: [
{
name: 'chromium',
use: {
..._test.devices['Desktop Chrome']
}
},
{
name: 'firefox',
use: {
..._test.devices['Desktop Firefox']
}
},
{
name: 'webkit',
use: {
..._test.devices['Desktop Safari']
}
}
],
webServer: {
command: process.env.CI === 'true' ? 'next start' : 'next dev',
url: 'http://127.0.0.1:3000',
reuseExistingServer: process.env.CI !== 'true'
}
};
//# sourceMappingURL=default-config.js.map