You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
- // We've imported your old cypress plugins here.- // You may want to clean this up later by importing these.- setupNodeEvents(on, config) {- return require('./cypress/plugins/index.ts').default(on, config)- },
baseUrl: 'http://localhost:5050',
},
});
概要
viteの更新により package.json に "type":"module" を追加すると発生するため、それらの更新に紐づけて行う #664
対処法
require
を使わないようにする(plugin の利用を消す?)完了条件
npm run test:e2e スクリプトが実行できる
The text was updated successfully, but these errors were encountered: