add testing env

This commit is contained in:
2022-02-24 14:53:07 +01:00
parent e31ebc1799
commit 36e01e61a5
3 changed files with 2455 additions and 65 deletions

2514
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,6 +13,7 @@
"@supercharge/request-ip": "^1.1.2",
"axios": "^0.26.0",
"child_process": "^1.0.2",
"cypress": "^9.5.0",
"evergreen-ui": "^6.8.2",
"next": "^12.0.10",
"next-auth": "^4.2.1",

5
tests/first.js Normal file
View File

@@ -0,0 +1,5 @@
describe("My First Test", () => {
it("Does not do much!", () => {
expect(true).to.equal(true);
});
});