Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: polymer_0.5.4/bower_components/web-animations-js/test/karma-config.js

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 module.exports = function(config) { 1 module.exports = function(config) {
2 config.set({ 2 config.set({
3 frameworks: ['mocha', 'chai'], 3 frameworks: ['mocha', 'chai'],
4 plugins: [ 4 plugins: [
5 'karma-mocha', 5 'karma-mocha',
6 'karma-chai', 6 'karma-chai',
7 'karma-chrome-launcher', 7 'karma-chrome-launcher',
8 'karma-firefox-launcher' 8 'karma-firefox-launcher'
9 ], 9 ],
10 browsers: ['Firefox'], 10 browsers: ['Firefox'],
11 // browsers: ['Safari', 'Chrome', 'ChromeCanary', 'Firefox', 'IE'], 11 // browsers: ['Safari', 'Chrome', 'ChromeCanary', 'Firefox', 'IE'],
12 basePath: '..', 12 basePath: '..',
13 files: [ 13 files: [
14 // Populated in `grunt test` task. 14 // Populated in `grunt test` task.
15 ], 15 ],
16 singleRun: true, 16 singleRun: true,
17 port: 9876, 17 port: 9876,
18 reporters: ['dots'], 18 reporters: ['dots'],
19 colors: true, 19 colors: true,
20 autoWatch: false, 20 autoWatch: false,
21 }); 21 });
22 }; 22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698