mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
testinfrastructure created
This commit is contained in:
parent
838c74a83b
commit
3650ef4805
6 changed files with 548 additions and 5968 deletions
9
.babelrc
9
.babelrc
|
@ -1,5 +1,12 @@
|
||||||
{
|
{
|
||||||
"presets": [
|
"presets": [
|
||||||
"@babel/preset-stage-3"
|
"@babel/preset-stage-3"
|
||||||
]
|
],
|
||||||
|
"env": {
|
||||||
|
"COVERAGE": {
|
||||||
|
"plugins": [
|
||||||
|
"istanbul"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -33,3 +33,4 @@ ehthumbs.db
|
||||||
.meteor/local
|
.meteor/local
|
||||||
.devcontainer/docker-compose.extend.yml
|
.devcontainer/docker-compose.extend.yml
|
||||||
.devcontainer/volumes*/
|
.devcontainer/volumes*/
|
||||||
|
.coverage
|
||||||
|
|
|
@ -145,3 +145,5 @@ spacebars
|
||||||
easylogic:summernote
|
easylogic:summernote
|
||||||
pascoual:pdfkit
|
pascoual:pdfkit
|
||||||
wekan-accounts-lockout
|
wekan-accounts-lockout
|
||||||
|
lmieulet:meteor-coverage
|
||||||
|
meteortesting:mocha
|
||||||
|
|
|
@ -69,6 +69,7 @@ lamhieu:meteorx@2.1.1
|
||||||
lamhieu:unblock@1.0.0
|
lamhieu:unblock@1.0.0
|
||||||
launch-screen@1.2.1
|
launch-screen@1.2.1
|
||||||
livedata@1.0.18
|
livedata@1.0.18
|
||||||
|
lmieulet:meteor-coverage@3.2.0
|
||||||
localstorage@1.2.0
|
localstorage@1.2.0
|
||||||
logging@1.2.0
|
logging@1.2.0
|
||||||
matb33:collection-hooks@0.9.1
|
matb33:collection-hooks@0.9.1
|
||||||
|
@ -82,6 +83,9 @@ meteorhacks:collection-utils@1.2.0
|
||||||
meteorhacks:picker@1.0.3
|
meteorhacks:picker@1.0.3
|
||||||
meteorhacks:subs-manager@1.6.4
|
meteorhacks:subs-manager@1.6.4
|
||||||
meteorspark:util@0.2.0
|
meteorspark:util@0.2.0
|
||||||
|
meteortesting:browser-tests@1.3.4
|
||||||
|
meteortesting:mocha@2.0.1
|
||||||
|
meteortesting:mocha-core@8.0.1
|
||||||
minifier-css@1.5.4
|
minifier-css@1.5.4
|
||||||
minifier-js@2.6.0
|
minifier-js@2.6.0
|
||||||
minifiers@1.1.8-faster-rebuild.0
|
minifiers@1.1.8-faster-rebuild.0
|
||||||
|
|
6491
package-lock.json
generated
6491
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -13,7 +13,11 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://wekan.github.io",
|
"homepage": "https://wekan.github.io",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"flatted": "^3.1.1"
|
"babel-plugin-istanbul": "^6.0.0",
|
||||||
|
"chai": "^4.3.4",
|
||||||
|
"flatted": "^3.1.1",
|
||||||
|
"puppeteer": "^10.0.0",
|
||||||
|
"sinon": "^11.1.1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.14.0",
|
"@babel/core": "^7.14.0",
|
||||||
|
@ -41,5 +45,8 @@
|
||||||
"papaparse": "^5.3.0",
|
"papaparse": "^5.3.0",
|
||||||
"qs": "^6.10.1",
|
"qs": "^6.10.1",
|
||||||
"source-map-support": "^0.5.19"
|
"source-map-support": "^0.5.19"
|
||||||
|
},
|
||||||
|
"meteor": {
|
||||||
|
"testModule": "tests/main.js"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue