Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Jun 23, 2020
1 parent a729a79 commit dd66b4f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/scanners/test.javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ describe('JavaScript Scanner', () => {
expect(linterMessages.length).toEqual(0);
});

// eslint-disable-next-line jest/no-disabled-tests
it.skip('should support public class fields', async () => {
const code = 'class MyClass { a = 1; }';

Expand All @@ -139,6 +140,7 @@ describe('JavaScript Scanner', () => {
expect(linterMessages.length).toEqual(0);
});

// eslint-disable-next-line jest/no-disabled-tests
it.skip('should support dynamic imports', async () => {
const code = "let { hi, bye } = await import('./say.js');";

Expand Down

0 comments on commit dd66b4f

Please sign in to comment.