-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcallback.test.js
48 lines (41 loc) · 1.27 KB
/
callback.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import chai, { expect } from 'chai';
import sinon from 'sinon';
import sinonChai from 'sinon-chai';
import callback from './callback';
chai.use(sinonChai);
describe('callback', () => {
let serverless;
let fn;
beforeEach(() => {
serverless = {
cli: {
log: sinon.spy(),
},
};
fn = callback(serverless);
});
it('is a function returning a function', () => {
expect(fn).to.be.a('function');
});
describe('inner function', () => {
it('prints out error if there is an error, and does not run success', () => {
const error = new Error('error');
fn(error);
expect(serverless.cli.log)
.to.have.been.calledWith('Failed - This Error Was Returned:');
expect(serverless.cli.log)
.to.have.been.calledWith('error');
expect(serverless.cli.log)
.to.have.been.calledWith(error.stack);
expect(serverless.cli.log)
.to.not.have.been.calledWith('Success! - This Response Was Returned:');
});
it('prints out stringified result if there is no error', () => {
fn(null, 'result');
expect(serverless.cli.log)
.to.have.been.calledWith('Success! - This Response Was Returned:');
expect(serverless.cli.log)
.to.have.been.calledWith('"result"');
});
});
});