fix: xml namespace loader test

This commit is contained in:
Igor Randjelovic
2020-11-28 21:35:51 +01:00
committed by Nathan Walker
parent 696389d031
commit c9455e67ad

View File

@ -129,7 +129,7 @@ async function parseXML(content: string): Promise<ParseResult> {
await resolveAsync(this.context, `${noExtFilename}.css`) await resolveAsync(this.context, `${noExtFilename}.css`)
.then((css) => { .then((css) => {
this.addDependency(css); this.addDependency(css);
// namespaces.push({ name: `${moduleName}.css`, path: css }); namespaces.push({ name: `${moduleName}.css`, path: css });
}) })
.catch(noop); .catch(noop);
}; };