We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d87d02 commit 86857cfCopy full SHA for 86857cf
src/routes/billingAccounts/get.spec.js
@@ -8,7 +8,7 @@ import server from '../../app';
8
import testUtil from '../../tests/util';
9
import SalesforceService from '../../services/salesforceService';
10
11
-chai.should();
+const should = chai.should();
12
13
// demo data which might be returned by the `SalesforceService.query`
14
const billingAccountData = {
@@ -169,7 +169,7 @@ describe('Project Billing Accounts list', () => {
169
} else {
170
const resJson = res.body;
171
resJson.tcBillingAccountId.should.be.eql(billingAccountData.tcBillingAccountId);
172
- resJson.markup.should.not.exist;
+ should.not.exist(resJson.markup);
173
done();
174
}
175
});
0 commit comments