mirror of
https://github.com/postmanlabs/openapi-to-postman.git
synced 2022-11-29 22:05:00 +03:00
Merge pull request #507 from postmanlabs/feature/fix-travis-issue
Fixed travis pipelines build issue for certain node version.
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
language: node_js
|
||||
dist: 'xenial'
|
||||
node_js:
|
||||
- "8"
|
||||
- "9"
|
||||
- "10"
|
||||
- "11"
|
||||
- "12"
|
||||
- "node"
|
||||
- "lts/*"
|
||||
|
||||
@@ -25,7 +25,7 @@ describe('travis.yml', function () {
|
||||
describe('strucure', function () {
|
||||
it('language must be set to node', function () {
|
||||
expect(travisYAML.language).to.be('node_js');
|
||||
expect(travisYAML.node_js).to.eql(['8', '9', '10', '11', '12', 'node', 'lts/*']);
|
||||
expect(travisYAML.node_js).to.eql(['8', '10', '12', 'lts/*']);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user