Skip to content

Commit

Permalink
Merge pull request #356 from relu91/fix-netconf
Browse files Browse the repository at this point in the history
Fix netconf tests
  • Loading branch information
danielpeintner authored Nov 10, 2020
2 parents 3950de6 + ed420fe commit aa1cf8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: node_js
os:
- linux
- osx
- windows
node_js:
- "node"
- "10"
Expand Down
6 changes: 5 additions & 1 deletion packages/binding-netconf/test/netconf-client-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ import * as xpath2json from '../src/xpath2json';

describe('outer describe', function () {

this.timeout(10000);
let client: NetconfClient;

let client: NetconfClient = new NetconfClient();
before(() => {
client = new NetconfClient();
});

it("should apply security", async function () {
let metadata = [{ scheme: 'nosec' }];
Expand Down

0 comments on commit aa1cf8c

Please sign in to comment.