Skip to content

Commit

Permalink
running an IE test in appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Renwick committed Sep 10, 2015
1 parent b56d695 commit 7e63cee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test_script:
- node --version
- node_modules\.bin\npm --version
# run tests
- node_modules\.bin\npm test
- node_modules\.bin\npm run test-ie

# Don't actually build.
build: off
Expand Down
13 changes: 13 additions & 0 deletions karma.conf.ie.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = function (config) {
require('./karma.conf.js')(config);
config.set({
plugins: config.plugins.concat('karma-ie-launcher'),
browsers: ['IE'],
customLaunchers: {
IE11: {
base: 'IE',
'x-ua-compatible': 'IE=EmulateIE9'
}
}
});
};

0 comments on commit 7e63cee

Please sign in to comment.