diff options
| author | Caitlin Potter | 2014-02-18 15:16:38 -0500 | 
|---|---|---|
| committer | Caitlin Potter | 2014-02-18 18:43:59 -0500 | 
| commit | 05fbed5710b702c111c1425a9e241c40d13b0a54 (patch) | |
| tree | 35b140ec5fb4cee2a5dfe069d535ea6311281117 /karma-jqlite.conf.js | |
| parent | 21dac2a3daae528471d5e767072b10e1491f2106 (diff) | |
| download | angular.js-05fbed5710b702c111c1425a9e241c40d13b0a54.tar.bz2 | |
fix(jqLite): make jqLite('<iframe src="someurl">').contents() return iframe document, as in jQuery
This is a very tiny change to make behaviour consistent with jQuery.
Closes #6320
Closes #6323
Diffstat (limited to 'karma-jqlite.conf.js')
| -rw-r--r-- | karma-jqlite.conf.js | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/karma-jqlite.conf.js b/karma-jqlite.conf.js index 267e952f..7b511720 100644 --- a/karma-jqlite.conf.js +++ b/karma-jqlite.conf.js @@ -5,7 +5,12 @@ module.exports = function(config) {    sharedConfig(config, {testName: 'AngularJS: jqLite', logFile: 'karma-jqlite.log'});    config.set({ -    files: angularFiles.mergeFilesFor('karma'), +    files: angularFiles.mergeFilesFor('karma').concat({ +      pattern: "test/fixtures/**/*.html", +      served: true, +      watched: true, +      included: false +    }),      exclude: angularFiles.mergeFilesFor('karmaExclude'),      junitReporter: { | 
