How to use the systemjs.getConfig function in systemjs

To help you get started, we’ve selected a few systemjs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github systemjs / plugin-css / test / css.builder.spec.js View on Github external
it('Should support buildCSS: false', function() {
			var builder = new Builder();
			builder.config(System.getConfig());
			builder.config({ buildCSS: false });
			return builder.bundle('test/data/test.css!', {minify: false}).then(function(results) {
				return expect(results.source).to.equal('');
			});
		})