mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 06:56:59 +00:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
//import axios from 'axios'
|
|
const axios = require('axios')
|
|
|
|
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
specPattern: 'cypress/tests/**/*.spec.{js,jsx,ts,tsx}',
|
|
viewportHeight: 1000,
|
|
viewportWidth: 1280,
|
|
},
|
|
})
|