Bump to latest cypress (#4853)

Latest cypress:
- updated all the tests
- fixed up warnings
- got rid of isolation stuff, it's now isolated by default
- added simple docs
- added `--noLocal` to prevent any local config from screwing up when
testing locally
- store screenshot artifacts if things go wrong
This commit is contained in:
Matt Godbolt
2023-03-14 10:00:40 -05:00
committed by GitHub
parent 7a105ad0d0
commit a8f832f80c
14 changed files with 51 additions and 93 deletions

10
cypress.config.ts Normal file
View File

@@ -0,0 +1,10 @@
// eslint-disable-next-line node/no-unpublished-import
import {defineConfig} from 'cypress';
// eslint-disable-next-line import/no-default-export
export default defineConfig({
e2e: {
baseUrl: 'http://127.0.0.1:10240/',
supportFile: 'cypress/support/utils.ts',
},
});