Skip to content

Commit

Permalink
Update after each hook
Browse files Browse the repository at this point in the history
  • Loading branch information
cosminghitea authored and cosminghitea committed Feb 2, 2018
1 parent 1542c24 commit 5d6577d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
env:
- CXX=g++-7
addons:
Expand Down
2 changes: 1 addition & 1 deletion test/test_async_bind_unbind.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Testing the async LDAP bind/unbind', () => {
clientLDAP = new LDAPWrap(host);
return clientLDAP.initialize();
});
afterEach();
afterEach(() => { });

it('should not bind to the server using invalid credentials', () => {

Expand Down
2 changes: 1 addition & 1 deletion test/test_async_initialization.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('Testing the async initialization', () => {

beforeEach(() => { ldapWrap = new LDAPWrap(host); });

afterEach();
afterEach(() => { });

it('should initialize the connection', () => {
return ldapWrap.initialize()
Expand Down
2 changes: 1 addition & 1 deletion test/test_async_multiple_connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Testing the async LDAP connection', () => {
clientLDAP2 = new LDAPWrap(hostAddress);
});

afterEach();
afterEach(() => { });

it('should bind multiple clients at the same time', () => {
const pathToCert = config.ldapAuthentication.pathFileToCert;
Expand Down

0 comments on commit 5d6577d

Please sign in to comment.