Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
infojunkie committed Nov 12, 2024
1 parent e4337e0 commit ec180fc
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lib/ireal-musicxml.js

This file was deleted.

2 changes: 1 addition & 1 deletion test/bugs.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('Bug Fixes', () => {
const brendan = new Playlist(fs.readFileSync('test/data/brendan.html', 'utf-8'));
});

it('Checks #54 mmessy chord timings', async () => {
it('Checks #54 messy chord timings', async () => {
const song = blues.songs.find(song => song.title === "Come Back Baby");
assert.notStrictEqual(song, undefined);
const musicXml = Converter.convert(song);
Expand Down
2 changes: 1 addition & 1 deletion test/converter.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ before(() => {
jazz = new Playlist(fs.readFileSync('test/data/jazz1460.txt', 'utf-8'));
playlist = new Playlist(fs.readFileSync('test/data/playlist.html', 'utf-8'));
strange = new Playlist(fs.readFileSync('test/data/strange.html', 'utf-8'));
blues = new Playlist(fs.readFileSync('test/data/blues.txt', 'utf-8'));
blues = new Playlist(fs.readFileSync('test/data/blues50.txt', 'utf-8'));
pop = new Playlist(fs.readFileSync('test/data/pop.txt', 'utf-8'));
})

Expand Down
File renamed without changes.

0 comments on commit ec180fc

Please sign in to comment.