Skip to content

Commit 3a638c8

Browse files
committed
test: skip tests without myst
1 parent fdbfefa commit 3a638c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/schema.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const cases: [string, TestCase][] = files
7979
.filter(([f, t]) => {
8080
if (t.skip) skipped.push([f, t]);
8181
if (t.invalid) invalid.push([f, t]);
82-
return !t.skip && !t.invalid;
82+
return !t.skip && !t.invalid && t.myst !== undefined;
8383
});
8484

8585
describe('Valid Schema Tests', () => {

0 commit comments

Comments
 (0)