Skip to content

Commit

Permalink
Remove matches from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Jul 31, 2024
1 parent 26551ec commit fb4d11d
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 330 deletions.
2 changes: 1 addition & 1 deletion scripts/redos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const TESTS = new Set(MATCH_TESTS.map((test) => test.path));
// ];

for (const path of TESTS) {
const { re } = match(path);
const { re } = match(path) as any;
const result = checkSync(re.source, re.flags);
if (result.status === "safe") {
safe++;
Expand Down
Loading

0 comments on commit fb4d11d

Please sign in to comment.