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 70c8b3d commit d0953a6Copy full SHA for d0953a6
test/test.js
@@ -186,8 +186,8 @@ describe('suitcss', function() {
186
beforeLint: beforeLintStub
187
}).catch(done);
188
189
- expect(lintImportedFilesStub).to.be.called.once;
190
- expect(beforeLintStub).to.be.called.once;
+ expect(lintImportedFilesStub).to.be.calledOnce;
+ expect(beforeLintStub).to.be.calledOnce;
191
expect(beforeLintStub).to.have.been.calledBefore(lintImportedFilesStub);
192
193
done();
0 commit comments