Skip to content

Commit

Permalink
test: skip tests without myst
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Oct 18, 2024
1 parent fdbfefa commit 3a638c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/schema.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const cases: [string, TestCase][] = files
.filter(([f, t]) => {
if (t.skip) skipped.push([f, t]);
if (t.invalid) invalid.push([f, t]);
return !t.skip && !t.invalid;
return !t.skip && !t.invalid && t.myst !== undefined;
});

describe('Valid Schema Tests', () => {
Expand Down

0 comments on commit 3a638c8

Please sign in to comment.