Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-main.js « tests « js - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d44f1fdf3dcfe73ab5a5130aa259de131348d2b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var allTestFiles = [];
var TEST_REGEXP = /(spec|test)\.js$/i;

// Get a list of all the test files to include
Object.keys(window.__karma__.files).forEach(function(file) {
	if (TEST_REGEXP.test(file)) {
		// Normalize paths to RequireJS module names.
		// If you require sub-dependencies of test files to be loaded as-is (requiring file extension)
		// then do not normalize the paths
		var normalizedTestModule = file.replace(/^\/base\/js\/|\.js$/g, '');
		allTestFiles.push(normalizedTestModule);
	}
});

require.config({
	// Karma serves files under /base, which is the basePath from your config file
	baseUrl: '/base/js',
	paths: {
		backbone: 'vendor/backbone/backbone',
		domready: 'vendor/domready/ready.min',
		handlebars: 'vendor/handlebars/handlebars',
		marionette: 'vendor/backbone.marionette/lib/backbone.marionette',
		underscore: 'vendor/underscore/underscore',
		OC: 'tests/mocks/OC',
		text: 'vendor/text/text'
	},
	// dynamically load all test files
	deps: allTestFiles,
	// we have to kickoff jasmine, as it is asynchronous
	callback: window.__karma__.start
});