Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cspotcode committed May 7, 2022
1 parent d9cd9dc commit c2a23c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/index.spec.ts
Expand Up @@ -1117,7 +1117,7 @@ test('Detect when typescript adds new ModuleKind values; flag as a failure so we
expect(ts.ModuleKind[99]).toBeUndefined();
}
check(7, 'ES2022', false);
if(ts.version.startsWith('4.8.') || semver.gte(ts.version, '4.8.0')) {
if (ts.version.startsWith('4.8.') || semver.gte(ts.version, '4.8.0')) {
check(100, 'Node16', false);
} else {
check(100, 'Node12', false);
Expand Down

0 comments on commit c2a23c7

Please sign in to comment.