Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infrastructure for mounting more than one webview at a time #12382

Merged
merged 11 commits into from
Jun 16, 2020
12 changes: 12 additions & 0 deletions build/.mocha.functional.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"spec": "./out/test/**/*.functional.test.js",
"require": ["out/test/unittests.js"],
"exclude": "out/**/*.jsx",
"reporter": "mocha-multi-reporters",
"reporter-option": "configFile=build/.mocha-multi-reporters.config",
"ui": "tdd",
"recursive": true,
"colors": true,
"exit": true,
"timeout": 180000
}
10 changes: 0 additions & 10 deletions build/.mocha.functional.opts

This file was deleted.

11 changes: 11 additions & 0 deletions build/.mocha.functional.perf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"spec": "./out/test/**/*.functional.test.js",
"exclude-out": "out/**/*.jsx",
"require": ["out/test/unittests.js"],
"reporter": "spec",
"ui": "tdd",
"recursive": true,
"colors": true,
"exit": true,
"timeout": 180000
}
9 changes: 0 additions & 9 deletions build/.mocha.functional.perf.opts

This file was deleted.

12 changes: 12 additions & 0 deletions build/.mocha.performance.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"spec": "./out/test/**/*.functional.test.js",
"require": ["out/test/unittests.js"],
"reporter": "mocha-multi-reporters",
"reporter-option": "configFile=build/.mocha.perf.config",
"ui": "tdd",
"recursive": true,
"colors": true,
"exit": true,
"timeout": 30000,
"grep": "DataScience"
}
10 changes: 0 additions & 10 deletions build/.mocha.performance.opts

This file was deleted.

9 changes: 9 additions & 0 deletions build/.mocha.unittests.js.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"spec": "./out/test/**/*.unit.test.js",
"require": ["source-map-support/register", "out/test/unittests.js"],
"reporter": "mocha-multi-reporters",
"reporter-option": "configFile=build/.mocha-multi-reporters.config",
"ui": "tdd",
"recursive": true,
"colors": true
}
8 changes: 0 additions & 8 deletions build/.mocha.unittests.js.opts

This file was deleted.

9 changes: 9 additions & 0 deletions build/.mocha.unittests.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"spec": "./out/test/**/*.unit.test.js",
"require": ["out/test/unittests.js"],
"reporter": "mocha-multi-reporters",
"reporter-option": "configFile=build/.mocha-multi-reporters.config",
"ui": "tdd",
"recursive": true,
"colors": true
}
7 changes: 0 additions & 7 deletions build/.mocha.unittests.opts

This file was deleted.

9 changes: 9 additions & 0 deletions build/.mocha.unittests.ts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"spec": "./src/test/**/*.unit.test.ts",
"require": ["ts-node/register", "out/test/unittests.js"],
"reporter": "mocha-multi-reporters",
"reporter-option": "configFile=build/.mocha-multi-reporters.config",
"ui": "tdd",
"recursive": true,
"colors": true
}
8 changes: 0 additions & 8 deletions build/.mocha.unittests.ts.opts

This file was deleted.

Loading