From 0272355ea8a8fd6703cd41c4eb9fb25a2c42cd6d Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Mon, 17 Jul 2023 15:07:47 -0400 Subject: [PATCH] adds back cypress watch and reload (#693) Signed-off-by: Derek Ho --- .cypress/plugins/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cypress/plugins/index.js b/.cypress/plugins/index.js index 9a0af3c10..ddc95c953 100644 --- a/.cypress/plugins/index.js +++ b/.cypress/plugins/index.js @@ -24,4 +24,7 @@ module.exports = (on, config) => { // `on` is used to hook into various events Cypress emits // `config` is the resolved Cypress config + require('cypress-watch-and-reload/plugins')(config) + + return config }