all files / src/ tests.ts

100% Statements 12/12
100% Branches 0/0
100% Functions 0/0
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23                     
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
/* inject:tests */
require('./datasource/datasource.test.ts');
require('./datasource/datasourcePluginFactory.test.ts');
require('./datasource/datasourcePluginRegistry.test.ts');
require('./datasource/datasourcePlugins.test.ts');
require('./datasourceApp/datasourceScheduler.test.ts');
require('./pluginApi/pluginLoader.test.ts');
require('./pluginApi/uri.test.js');
require('./serverRenderer.test.ts');
require('./util/collection.test.js');
require('./widgetApp/widgetHelper.test.ts');
require('./widgets/widgetPlugins.test.ts');
require('./widgets/widgets.test.ts');
/* endinject */
// TODO: instead of inject we could use require.context
// const testsContext = require.context(".", true, /_test$/);
// testsContext.keys().forEach(testsContext);