Skip to content

Commit ee09890

Browse files
committed
Prevent execution in the test-description
1 parent 38af96f commit ee09890

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ describe('cue-parser', function() {
55
var sheet;
66

77
describe('it should parse windows files with \r\n', function() {
8-
sheet = parser.parse(__dirname + '/sample-win.cue');
98

109
it('should skip newlines', function() {
10+
sheet = parser.parse(__dirname + '/sample-win.cue');
11+
1112
expect(sheet.catalog).to.be('3898347789120');
1213

1314
expect(sheet.files).to.be.an('array');
@@ -55,7 +56,7 @@ describe('cue-parser', function() {
5556

5657
it('should parse Disk TITLE', function() {
5758
expect(sheet.title).to.be('Sample title');
58-
})
59+
});
5960

6061
it('should parse all tracks of the file', function() {
6162
var tracks = sheet.files[0].tracks;

0 commit comments

Comments
 (0)