mirror of
https://github.com/vercel/commerce.git
synced 2025-05-08 18:57:51 +00:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
}
|
|
}
|
|
});
|