Skip to content

Commit

Permalink
fix: test cases for empty response body fixed
Browse files Browse the repository at this point in the history
Signed-off-by: braj1999 <[email protected]>
  • Loading branch information
braj1999 committed Jan 16, 2024
1 parent e1fef83 commit 17a0f54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/client-ntlm-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('NTLM Auth tests', function() {
done();
});

it('should call ntlm endpoint', function() {
it('should call ntlm endpoint', function(done) {
var ntlmSec = new NTLMSecurity(clientNTLMUsername,
clientNTLMPassword,
clientNTLMDomain,
Expand All @@ -79,6 +79,7 @@ describe('NTLM Auth tests', function() {

client.GetLastTradePrice({}, function(err, result) {
assert.deepEqual(result, {price: 19.56})
done()
}, null, {'test-header': 'test'});
}, 'http://localhost:8002/services/StockQuoteService');
});
Expand Down
6 changes: 5 additions & 1 deletion test/wsdl-test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 17a0f54

Please sign in to comment.