-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #877 from rvilarl/migration/tuningFractionTest
Migration/tuning fraction test
- Loading branch information
Showing
6 changed files
with
76 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
/** | ||
* VexFlow - Declarations to interface with ./support/qunit.js | ||
*/ | ||
|
||
declare const global: any; | ||
|
||
export const QUnit = global.QUnit; | ||
export const ok = global.ok; | ||
export const notOk = global.notOk; | ||
export const test = global.test; | ||
export const expect = global.expect; | ||
export const equal = global.equal; | ||
export const notEqual = global.notEqual; | ||
export const deepEqual = global.deepEqual; | ||
export const notDeepEqual = global.notDeepEqual; | ||
export const strictEqual = global.strictEqual; | ||
export const notStrictEqual = global.notStrictEqual; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters