Skip to content

Commit

Permalink
module name fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed May 1, 2023
1 parent 9ce0332 commit 4d4e067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/vexflow_test_helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,10 @@ export class VexFlowTests {
}
const testTypeLowerCase = testType.toLowerCase();
fontStacks.forEach((fontStackName: string) => {
QUnit.test(name, (assert: Assert) => {
QUnit.test(name, (assert: any) => {
useTempFontStack(fontStackName);
const elementId = VexFlowTests.generateTestID(`${testTypeLowerCase}_` + fontStackName);
const moduleName = QUnit.module.name;
const moduleName = assert.test.module.name;
const title = moduleName + ' › ' + name + ` › ${testType} + ${fontStackName}`;

// Add an element id for the title div, so that we can scroll directly to a test case.
Expand Down

0 comments on commit 4d4e067

Please sign in to comment.