velocious 1.0.42 → 1.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/peak_flow.yml +1 -0
- package/src/cli/commands/test.js +2 -1
package/package.json
CHANGED
package/peak_flow.yml
CHANGED
package/src/cli/commands/test.js
CHANGED
|
@@ -4,7 +4,8 @@ import TestRunner from "../../testing/test-runner.js"
|
|
|
4
4
|
|
|
5
5
|
export default class VelociousCliCommandsTest extends BaseCommand {
|
|
6
6
|
async execute() {
|
|
7
|
-
const
|
|
7
|
+
const directory = process.env.VELOCIOUS_TEST_DIR || this.directory()
|
|
8
|
+
const testFilesFinder = new TestFilesFinder({directory, processArgs: this.processArgs})
|
|
8
9
|
const testFiles = await testFilesFinder.findTestFiles()
|
|
9
10
|
const testRunner = new TestRunner({configuration: this.configuration, testFiles})
|
|
10
11
|
|