Skip to content

Commit 43891e1

Browse files
joshuaellismpeyper
andauthoredJan 10, 2021
refactor: move tests to specifically related folders
* refactor: move tests to specifically related folders * chore(config): update outdated configs after test changes * refactor: remove index from import paths in tests Co-authored-by: Michael Peyper <[email protected]>
1 parent ca32bce commit 43891e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+62
-68
lines changed
 

‎.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
"@typescript-eslint/no-invalid-void-type": "off"
1212
},
1313
"parserOptions": {
14-
"project": ["./tsconfig.json", "./test/tsconfig.json", "./scripts/tsconfig.json"]
14+
"project": ["./tsconfig.json", "./scripts/tsconfig.json"]
1515
}
1616
}

‎.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1+
# node
12
node_modules
2-
coverage
3+
4+
# build generated
35
lib
46
dom
57
native
68
server
79
pure
810
.docz
911
site
12+
13+
# tests (need the !files because of the build generated above)
14+
coverage
15+
!src/dom
16+
!src/native
17+
!src/server
18+
19+
# settings from IDE
1020
.vscode

0 commit comments

Comments
 (0)
Please sign in to comment.