Skip to content

Commit 2b41cb5

Browse files
author
Cheton Wu (RD-TW)
committed
Convert tabs to spaces
1 parent bc83198 commit 2b41cb5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

test/index.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const expect = chai.expect;
77
const should = chai.should();
88

99
describe('G-code Interpreter', (done) => {
10-
describe('Pass a null value as the first argument', (done) => {
10+
describe('Pass a null value as the first argument', (done) => {
1111
class GCodeRunner extends GCodeInterpreter {
1212
constructor(options) {
1313
super(options);
@@ -16,27 +16,27 @@ describe('G-code Interpreter', (done) => {
1616

1717
let runner = new GCodeRunner();
1818

19-
it('should call interpretText\'s callback.', (done) => {
19+
it('should call interpretText\'s callback.', (done) => {
2020
runner.interpretText(null, (err, results) => {
2121
expect(err).to.be.okay;
2222
done();
2323
});
24-
});
25-
it('should call interpretFile\'s callback.', (done) => {
24+
});
25+
it('should call interpretFile\'s callback.', (done) => {
2626
runner.interpretFile(null, (err, results) => {
2727
expect(err).to.be.okay;
2828
done();
2929
});
30-
});
31-
it('should call interpretStream\'s callback.', (done) => {
30+
});
31+
it('should call interpretStream\'s callback.', (done) => {
3232
runner.interpretStream(null, (err, results) => {
3333
expect(err).to.be.okay;
3434
done();
3535
});
36-
});
36+
});
3737
});
3838

39-
describe('G-code: circle', (done) => {
39+
describe('G-code: circle', (done) => {
4040
let calls = {};
4141

4242
class GCodeRunner extends GCodeInterpreter {
@@ -57,7 +57,7 @@ describe('G-code Interpreter', (done) => {
5757
}
5858
}
5959

60-
it('should call each function with the expected number of times.', (done) => {
60+
it('should call each function with the expected number of times.', (done) => {
6161
let runner = new GCodeRunner();
6262
runner.interpretFile('test/fixtures/circle.nc', (err, results) => {
6363
expect(calls.G0).to.equal(2);
@@ -68,7 +68,7 @@ describe('G-code Interpreter', (done) => {
6868
});
6969
});
7070

71-
describe('G-code: 1 inch circle', (done) => {
71+
describe('G-code: 1 inch circle', (done) => {
7272
let calls = {};
7373

7474
class GCodeRunner extends GCodeInterpreter {
@@ -104,7 +104,7 @@ describe('G-code Interpreter', (done) => {
104104
}
105105
}
106106

107-
it('should call each function with the expected number of times.', (done) => {
107+
it('should call each function with the expected number of times.', (done) => {
108108
let runner = new GCodeRunner();
109109
runner.interpretFile('test/fixtures/one-inch-circle.nc', (err, results) => {
110110
expect(calls.G0).to.equal(4);

0 commit comments

Comments
 (0)