-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathtest-station.config.mjs
More file actions
48 lines (46 loc) · 924 Bytes
/
Copy pathtest-station.config.mjs
File metadata and controls
48 lines (46 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import path from "node:path";
const rootDir = import.meta.dirname;
const outputDir = path.join(rootDir, "artifacts", "workspace-tests");
export default {
schemaVersion: "1",
project: {
name: "gulp-rev-all",
rootDir,
outputDir,
rawDir: path.join(outputDir, "raw"),
},
execution: {
dryRun: false,
continueOnError: true,
defaultCoverage: false,
},
render: {
html: true,
console: true,
},
suites: [
{
id: "unit-tests",
label: "Unit Tests",
adapter: "shell",
package: "gulp-rev-all",
cwd: rootDir,
command: ["npm", "run", "test:unit"],
coverage: {
enabled: false,
},
},
{
id: "lint",
label: "Lint",
adapter: "shell",
package: "gulp-rev-all",
cwd: rootDir,
command: ["npm", "run", "lint"],
coverage: {
enabled: false,
},
},
],
adapters: [],
};