Implement cypress unit testing

This commit is contained in:
David Twigger
2023-01-10 08:18:45 +01:00
parent bc7271b99c
commit 1565da87cf
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
supportFile: false,
specPattern: [
"test/cypress/unit/**/*.js"
],
}
});