Skip to content
This repository has been archived by the owner on Dec 3, 2022. It is now read-only.

Commit

Permalink
feat: Node 16 support (#92)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: required Node 12+
  • Loading branch information
ert78gb authored Jun 16, 2021
1 parent 68ab85a commit 9953e8f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 15]
node-version: [12, 14, 16]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.13.0
16.3.0
2 changes: 1 addition & 1 deletion spec/jasmine-ts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe("jasmine-ts", () => {
it('should work with --compiler-options', async () => {
const cwd = path.join(__dirname, 'test-cases', 'project')

const result = await testJasmine(['--compiler-options="{\\"allowJs\\":true, \\"checkJs\\":false}"', 'index.spec.ts'], cwd);
const result = await testJasmine(['--compiler-options="{\\"allowJs\\":true, \\"checkJs\\":false, \\"esModuleInterop\\":false}"', 'index.spec.ts'], cwd);
expect(result.exitCode).toBe(0)
expect(result.output).toContain('1 spec, 0 failures')
})
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"strict": true,
"sourceMap": true,
"inlineSources": true,
"esModuleInterop": true,
"outDir": "lib"
},
"files": [
Expand Down

0 comments on commit 9953e8f

Please sign in to comment.