Skip to content

Instantly share code, notes, and snippets.

@zeitiger
Created April 12, 2016 13:39
Show Gist options
  • Save zeitiger/1f5bd146a73fd5d76d24205b7fee6099 to your computer and use it in GitHub Desktop.
Save zeitiger/1f5bd146a73fd5d76d24205b7fee6099 to your computer and use it in GitHub Desktop.
In test scenario it could be helpful to simple disable css-plugin of SystemJS
System.set(System.normalizeSync('css'), System.newModule({
fetch() {
console.info('disable css loading in test suite');
return Promise.resolve('');
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment