mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
viewportHeight: 1000,
|
|
viewportWidth: 1280,
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
}
|
|
}
|
|
});
|