diff --git a/packages/e2e-test/src/commands/cypress.ts b/packages/e2e-test/src/commands/cypress.ts index be947c87c8..f0ee99da30 100644 --- a/packages/e2e-test/src/commands/cypress.ts +++ b/packages/e2e-test/src/commands/cypress.ts @@ -31,5 +31,6 @@ export async function run({ watch }: { watch: boolean }) { pluginsFile: path.resolve(__dirname, '../cypress/plugins'), defaultCommandTimeout: 10000, }, + configFile: false, }); } diff --git a/packages/e2e-test/src/cypress/plugins/index.ts b/packages/e2e-test/src/cypress/plugins/index.ts index 4e230aca20..b90c276d71 100644 --- a/packages/e2e-test/src/cypress/plugins/index.ts +++ b/packages/e2e-test/src/cypress/plugins/index.ts @@ -13,5 +13,4 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -export {}; +export default () => {};