mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* fix sourcemap fix relative path and pre publish build change travis wait all test run build and remove unused cpx * global test task modify publish script to accept options * appveyor run * different approach single test run * make it work the analytics test modify start demo shell script to use a different registry * sourcemap demo shell working * update readme and add install after any clean add registry option in start.sh script add develop and normal mode in demo shell add -d option in start.sh to point to the local components add -c option in build script to point to the local components
24 lines
690 B
JavaScript
24 lines
690 B
JavaScript
Error.stackTraceLimit = Infinity;
|
|
|
|
require('core-js/es6');
|
|
require('core-js/es7/reflect');
|
|
|
|
require('zone.js/dist/zone');
|
|
require('zone.js/dist/long-stack-trace-zone');
|
|
require('zone.js/dist/proxy');
|
|
require('zone.js/dist/sync-test');
|
|
require('zone.js/dist/jasmine-patch');
|
|
require('zone.js/dist/async-test');
|
|
require('zone.js/dist/fake-async-test');
|
|
|
|
var appContext = require.context('./src', true, /\.spec\.ts/);
|
|
appContext.keys().forEach(appContext);
|
|
|
|
|
|
var testing = require('@angular/core/testing');
|
|
var browser = require('@angular/platform-browser-dynamic/testing');
|
|
|
|
testing.TestBed.initTestEnvironment(browser.BrowserDynamicTestingModule, browser.platformBrowserDynamicTesting());
|
|
|
|
|