configuring backend tests

This commit is contained in:
Mikayla Dobson
2022-12-09 18:10:26 -06:00
parent bea17aa58b
commit 29e643e663
55 changed files with 6884 additions and 4 deletions

6
server/jest.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
setupFiles: ['dotenv/config'],
roots: ['<rootDir>/dist']
};