You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
548 B

4 years ago
  1. module.exports = function (config) {
  2. config.set({
  3. basePath: '',
  4. frameworks: ['jasmine'],
  5. files: [
  6. 'stackframe.js',
  7. 'spec/*-spec.js'
  8. ],
  9. reporters: ['spec'],
  10. port: 9876,
  11. colors: true,
  12. logLevel: config.LOG_INFO,
  13. autoWatch: true,
  14. customLaunchers: {
  15. Chrome_Travis: {
  16. base: 'Chrome',
  17. flags: ['--no-sandbox']
  18. }
  19. },
  20. browsers: ['PhantomJS'],
  21. singleRun: false
  22. });
  23. };