mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* DataTable (-4 sec) * PaginationComponent (-1 sec) * DocumentList * custom testbed setup, test upgrades * test fixes * more test fixes * remove fdescribe * test fixes * test fixes * more test fixes * test fixes * upgrade tests * update tests * upgrade tests * upgrade tests * upgrade tests * upgrade tests * update tests * translate loader fixes * auth and cookie fixes * upgrade tests * upgrade tests * test fixes * almost there * diable broken tests * process tests (part 1) * fix lint issues * another test upgrade * almost there * cleanup * insights testing upgrade * improve tests * tests cleanup * tests cleanup * cleanup tests * test cleanup * favorite nodes tests * rebase fix syntax * fix core test * give up test focus * flush tabs * fix search test * Update document-list.component.spec.ts * fix document list lock * increase tick time * remove duplicate test
26 lines
738 B
JavaScript
26 lines
738 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 = 20000;
|
|
|
|
var appContext = require.context(".", true, /.spec.ts/);
|
|
appContext.keys().forEach(appContext);
|
|
|
|
const TestBed = require('@angular/core/testing').TestBed;
|
|
const browser = require('@angular/platform-browser-dynamic/testing');
|
|
|
|
TestBed.initTestEnvironment(
|
|
browser.BrowserDynamicTestingModule,
|
|
browser.platformBrowserDynamicTesting()
|
|
);
|