Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 24 lines (19 sloc) 0.577 kb
36831ec Michał Gołębiowski refactor(jshint): reduce duplication & test all JS files
mzgol authored
1 'use strict';
2
29f96c8 Vojta Jina chore: update karma to 0.9.4
vojtajina authored
3 var angularFiles = require('./angularFiles');
4 var sharedConfig = require('./karma-shared.conf');
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
5
29f96c8 Vojta Jina chore: update karma to 0.9.4
vojtajina authored
6 module.exports = function(config) {
80d0f98 Vojta Jina chore(travis): clean up logs
vojtajina authored
7 sharedConfig(config, {testName: 'AngularJS: jqLite', logFile: 'karma-jqlite.log'});
9d168f0 Igor Minar chore(testing): Testacular config files + rake tasks
IgorMinar authored
8
29f96c8 Vojta Jina chore: update karma to 0.9.4
vojtajina authored
9 config.set({
05fbed5 ⭐caitp⭐ fix(jqLite): make jqLite('<iframe src="someurl">').contents() return ifr...
caitp authored
10 files: angularFiles.mergeFilesFor('karma').concat({
11 pattern: "test/fixtures/**/*.html",
12 served: true,
13 watched: true,
14 included: false
15 }),
976edc1 Vojta Jina chore: clean up angularFiles.js
vojtajina authored
16 exclude: angularFiles.mergeFilesFor('karmaExclude'),
a5d434d Vojta Jina chore(test): add junit config for testacular
vojtajina authored
17
29f96c8 Vojta Jina chore: update karma to 0.9.4
vojtajina authored
18 junitReporter: {
19 outputFile: 'test_out/jqlite.xml',
20 suite: 'jqLite'
21 }
22 });
a5d434d Vojta Jina chore(test): add junit config for testacular
vojtajina authored
23 };
Something went wrong with that request. Please try again.