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 38af96f commit ee09890Copy full SHA for ee09890
test/test.js
@@ -5,9 +5,10 @@ describe('cue-parser', function() {
5
var sheet;
6
7
describe('it should parse windows files with \r\n', function() {
8
- sheet = parser.parse(__dirname + '/sample-win.cue');
9
10
it('should skip newlines', function() {
+ sheet = parser.parse(__dirname + '/sample-win.cue');
11
+
12
expect(sheet.catalog).to.be('3898347789120');
13
14
expect(sheet.files).to.be.an('array');
@@ -55,7 +56,7 @@ describe('cue-parser', function() {
55
56
57
it('should parse Disk TITLE', function() {
58
expect(sheet.title).to.be('Sample title');
- })
59
+ });
60
61
it('should parse all tracks of the file', function() {
62
var tracks = sheet.files[0].tracks;
0 commit comments