Skip to content

Commit 3193e9c

Browse files
authored
Test under Node.js 12; bump dependencies
1 parent 4f4dfc7 commit 3193e9c

File tree

4 files changed

+1882
-630
lines changed

4 files changed

+1882
-630
lines changed

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ os:
33
- windows
44
- linux
55
node_js:
6+
- 12
67
- 11
78
- 10
89
- 8
@@ -11,13 +12,20 @@ env:
1112
- FRESH_DEPS=true
1213
matrix:
1314
exclude:
15+
- node_js: 12
16+
env: FRESH_DEPS=true # Assume any bugs that occur with fresh dependencies are not platform specific.
17+
os: windows
18+
- node_js: 12
19+
env: FRESH_DEPS=false
20+
os: linux # Windows already tests without fresh dependencies, and we test *with* on Linux.
1421
- node_js: 11
22+
os: windows # We don't need to test odd-version releases very hard.
23+
- node_js: 11
24+
env: FRESH_DEPS=true
25+
- node_js: 10
1526
env: FRESH_DEPS=true
1627
- node_js: 8
1728
env: FRESH_DEPS=true
18-
- node_js: 10
19-
env: FRESH_DEPS=true # Assume any bugs that occur with fresh dependencies are not platform specific.
20-
os: windows
2129
cache: npm
2230
before_install: if [[ "$(npm -v)" != "6.9.0" ]] && [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then npm install --global [email protected]; fi
2331
install: npm ci

docs/recipes/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Translations: [Español](https://github.com/avajs/ava-docs/blob/master/es_ES/doc
44

55
AVA comes bundled with a TypeScript definition file. This allows developers to leverage TypeScript for writing tests.
66

7-
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.3.4000.
7+
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.4.5.
88

99
## Configuring AVA to compile TypeScript files on the fly
1010

0 commit comments

Comments
 (0)