Skip to content

Commit

Permalink
chore: Remove support for Node 6 (#167)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Polly will no longer actively support Node 6
  • Loading branch information
offirgolan authored Jan 25, 2019
1 parent 7200255 commit a08a8cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- '6'
- '8'
- '10'

Expand Down
2 changes: 1 addition & 1 deletion build-scripts/rollup.node.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function createNodeConfig(options = {}) {
{
modules: false,
targets: {
node: '6.0.0'
node: '8.0.0'
}
}
]
Expand Down
2 changes: 2 additions & 0 deletions tests/integration/adapter-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ export default function adapterTests() {
});

it('should work with CORS requests', async function() {
this.timeout(10000);

const { server } = this.polly;
const apiUrl = 'http://jsonplaceholder.typicode.com';

Expand Down

0 comments on commit a08a8cf

Please sign in to comment.