Skip to content

Commit e474f2f

Browse files
committed
fix: Fixed unit-test
1 parent e8a9a3b commit e474f2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/map.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,14 @@ describe('map', () => {
6363
example: true
6464
});
6565

66-
expect(fs.writeFile.calls).to.have.length(3);
66+
expect(fs.writeFile.calls).to.have.length(4);
6767
expect(fs.writeFile.calls[0].args[0])
6868
.to.equal('foo-map.yaml');
6969
expect(fs.writeFile.calls[1].args[0])
7070
.to.equal('foo-example-script.yaml');
7171
expect(fs.writeFile.calls[2].args[0])
7272
.to.equal('foo-example-config.yaml');
73+
expect(fs.writeFile.calls[3].args[0])
74+
.to.equal('foo-example-filled.pdf');
7375
});
7476
});

0 commit comments

Comments
 (0)