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 e8a9a3b commit e474f2fCopy full SHA for e474f2f
test/map.test.js
@@ -63,12 +63,14 @@ describe('map', () => {
63
example: true
64
});
65
66
- expect(fs.writeFile.calls).to.have.length(3);
+ expect(fs.writeFile.calls).to.have.length(4);
67
expect(fs.writeFile.calls[0].args[0])
68
.to.equal('foo-map.yaml');
69
expect(fs.writeFile.calls[1].args[0])
70
.to.equal('foo-example-script.yaml');
71
expect(fs.writeFile.calls[2].args[0])
72
.to.equal('foo-example-config.yaml');
73
+ expect(fs.writeFile.calls[3].args[0])
74
+ .to.equal('foo-example-filled.pdf');
75
76
0 commit comments