feat: Add E2E tests (#4)

This commit is contained in:
2021-04-11 23:27:13 +02:00
committed by GitHub
parent e590d40db7
commit 6c16252b3b
16 changed files with 2618 additions and 43 deletions

7
jest.config.js Normal file
View File

@@ -0,0 +1,7 @@
const path = require('path');
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testEnvironment: path.join(__dirname, 'tests', 'env.js'),
};