We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ec4ab5 commit 0aa241bCopy full SHA for 0aa241b
.github/workflows/regression.yml
@@ -40,4 +40,8 @@ jobs:
40
- name: Install dependencies
41
run: pnpm install --frozen-lockfile
42
- name: Run tests
43
- run: pnpm test
+ run: |
44
+ cd ./fixtures/Latin/
45
+ vale --output=line --sort --normalize --relative test.md
46
+
47
+# pnpm test
test/rules.test.js
@@ -19,10 +19,11 @@ function trimEveryLine(multiline) {
19
.join("\n");
20
}
21
22
-test.each(scenario)(`Testing %s`, async (rule, expected) => {
+test.each(scenario)(`Test: %s`, async (rule, expected) => {
23
let result;
24
try {
25
const cwd = path.resolve(process.cwd(), fixturesDirectory, rule);
26
+ console.log(cwd);
27
const output = await execa(command, args, { cwd: cwd });
28
result = output.stdout;
29
} catch (error) {
0 commit comments