Skip to content

Commit

Permalink
Merge pull request #1405 from tkgroot/refactor/es6-module-test
Browse files Browse the repository at this point in the history
refactor/es6 module test
  • Loading branch information
jorenbroekema authored Dec 9, 2024
2 parents 8d85383 + 0249bc9 commit e03f5f2
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions __tests__/formats/javascriptEsm.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ describe('formats', () => {
file,
platform: {},
}),
{},
file,
),
).to.matchSnapshot();
});
Expand All @@ -113,8 +111,6 @@ describe('formats', () => {
stripMeta: true,
},
}),
{},
file,
),
).to.matchSnapshot();
});
Expand All @@ -132,8 +128,6 @@ describe('formats', () => {
},
},
}),
{},
file,
),
).to.matchSnapshot();
});
Expand All @@ -151,8 +145,6 @@ describe('formats', () => {
},
},
}),
{},
file,
),
).to.matchSnapshot();
});
Expand All @@ -163,7 +155,7 @@ describe('formats', () => {
createFormatArgs({
dictionary: {
tokens: DTCGTokens,
allTokens: convertTokenData(tokens, { output: 'array', usesDtcg: true }),
allTokens: convertTokenData(DTCGTokens, { output: 'array', usesDtcg: true }),
},
file,
platform: {},
Expand All @@ -172,8 +164,6 @@ describe('formats', () => {
stripMeta: true,
},
}),
{},
file,
),
).to.matchSnapshot();
});
Expand Down

0 comments on commit e03f5f2

Please sign in to comment.