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 b7caf5d commit 0e88b26Copy full SHA for 0e88b26
test/index.js
@@ -34,7 +34,7 @@ describe('G-code Toolpath', () => {
34
35
new GCodeToolpath()
36
.loadFromFile(file, (err, results) => {
37
- expect(err).to.be.okay;
+ expect(err).to.be.null;
38
done();
39
})
40
.on('data', (data) => {
@@ -51,7 +51,7 @@ describe('G-code Toolpath', () => {
51
52
53
.loadFromStream(stream, (err, results) => {
54
55
56
57
@@ -68,7 +68,7 @@ describe('G-code Toolpath', () => {
68
69
70
.loadFromString(string, (err, results) => {
71
72
73
74
0 commit comments