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