mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* change prepublish to build only add .npmrc in the gitignore and npmignore clean .npmrc during the clean task change registry during publish with npmrc file add rimraf install in npm publish * add option to link an alfresco-js-api from github * npm build on develop branch will use the alfresco-js-api from develop * modify script after review add -gitjsapi to starts.sh to change jsapi pointing add -vjsapi to starts.sh to change jsapi pointing * start dist demo shell script option
26 lines
733 B
JavaScript
26 lines
733 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');
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
|
|
|
|
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());
|
|
|
|
|