UNPKG

foundation-sites-5

Version:

**This package is only for versions 5 and earlier of Foundation. As of version 6, the package has a new name: `foundation-sites`.**

30 lines 764 B
// https://github.com/karma-runner/grunt-karma module.exports = { options: { configFile: 'karma.conf.js', runnerPort: 9999, }, continuous: { singleRun: true, browsers: ['TinyPhantomJS', 'SmallPhantomJS'] }, dev: { singleRun: true, browsers: ['TinyPhantomJS', 'SmallPhantomJS', 'TinyChrome', 'Firefox'], reporters: 'dots' }, dev_watch: { background: true, browsers: ['TinyPhantomJS', 'SmallPhantomJS', 'TinyChrome', 'Firefox'] }, mac: { singleRun: true, browsers: ['TinyPhantomJS', 'SmallPhantomJS', 'TinyChrome', 'Firefox', 'Safari'], reporters: 'dots' }, win: { singleRun: true, browsers: ['TinyPhantomJS', 'SmallPhantomJS', 'TinyChrome', 'Firefox', 'IE'], reporters: 'dots' } };