This commit is contained in:
Adria Navarro 2024-02-21 23:59:46 +01:00
parent b05dc6ab49
commit bbe5f0041d
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export const runJsHelpersTests = ({
const jsExamples = Object.keys(manifest).reduce((acc, v) => { const jsExamples = Object.keys(manifest).reduce((acc, v) => {
acc[v] = manifest[v].filter(([key]) => jsHelpers[key]) acc[v] = manifest[v].filter(([key]) => jsHelpers[key])
return acc return acc
}, {}) }, {} as typeof manifest)
describe.each(Object.keys(jsExamples))("%s", collection => { describe.each(Object.keys(jsExamples))("%s", collection => {
const examplesToRun = jsExamples[collection] const examplesToRun = jsExamples[collection]