udemy-node-tests/spies/app.tests.js

10 lines
217 B
JavaScript

const expect = require('expect');
describe('App', () => {
it('should call the spy correctly',() => {
var spy = expect.createSpy();
spy('Andrew', 25);
expect(spy).toHaveBeenCalled('Andrew', 25);
})
})