Skip to content

Commit 3381639

Browse files
committed
first commit
0 parents  commit 3381639

File tree

6 files changed

+15746
-0
lines changed

6 files changed

+15746
-0
lines changed

.componentsignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[
2+
]

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.data
2+
dist
3+
node_modules

jest.config.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
transform: {
3+
'^.+\\.ts$': [ 'ts-jest', {
4+
tsconfig: 'tsconfig.json',
5+
}],
6+
},
7+
// Only run tests in the unit and integration folders.
8+
// All test files need to have the suffix `.test.ts`.
9+
testRegex: '/test/(unit|integration)/.*\\.test\\.ts$',
10+
moduleFileExtensions: [
11+
'ts',
12+
'js',
13+
],
14+
testEnvironment: 'node',
15+
// Make sure our tests have enough time to start a server
16+
testTimeout: 60000,
17+
};

0 commit comments

Comments
 (0)