fix: xml namespace loader test

This commit is contained in:
Igor Randjelovic
2020-11-28 21:35:51 +01:00
parent 5b182c0d5f
commit 6e0407e5e8

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);
}; };