Simple landing page for my website

karma.conf.js 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // Karma configuration
  2. // http://karma-runner.github.io/0.12/config/configuration-file.html
  3. // Generated on 2016-01-09 using
  4. // generator-karma 1.0.0
  5. module.exports = function(config) {
  6. 'use strict';
  7. config.set({
  8. // enable / disable watching file and executing tests whenever any file changes
  9. autoWatch: true,
  10. // base path, that will be used to resolve files and exclude
  11. basePath: '../',
  12. // testing framework to use (jasmine/mocha/qunit/...)
  13. // as well as any additional frameworks (requirejs/chai/sinon/...)
  14. frameworks: [
  15. "jasmine"
  16. ],
  17. // list of files / patterns to load in the browser
  18. files: [
  19. // bower:js
  20. 'bower_components/jquery/dist/jquery.js',
  21. 'bower_components/angular/angular.js',
  22. 'bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js',
  23. 'bower_components/angular-animate/angular-animate.js',
  24. 'bower_components/angular-sanitize/angular-sanitize.js',
  25. 'bower_components/angular-touch/angular-touch.js',
  26. 'bower_components/angular-ui-router/release/angular-ui-router.js',
  27. 'bower_components/gsap/src/uncompressed/TweenMax.js',
  28. 'bower_components/ngFx/dist/ngFx.js',
  29. 'bower_components/mixpanel/mixpanel-jslib-snippet.js',
  30. 'bower_components/angular-mixpanel/src/angular-mixpanel.js',
  31. 'bower_components/angular-mocks/angular-mocks.js',
  32. // endbower
  33. "app/scripts/**/*.js",
  34. "test/mock/**/*.js",
  35. "test/spec/**/*.js"
  36. ],
  37. // list of files / patterns to exclude
  38. exclude: [
  39. ],
  40. // web server port
  41. port: 8080,
  42. // Start these browsers, currently available:
  43. // - Chrome
  44. // - ChromeCanary
  45. // - Firefox
  46. // - Opera
  47. // - Safari (only Mac)
  48. // - PhantomJS
  49. // - IE (only Windows)
  50. browsers: [
  51. "PhantomJS"
  52. ],
  53. // Which plugins to enable
  54. plugins: [
  55. "karma-phantomjs-launcher",
  56. "karma-jasmine"
  57. ],
  58. // Continuous Integration mode
  59. // if true, it capture browsers, run tests and exit
  60. singleRun: false,
  61. colors: true,
  62. // level of logging
  63. // possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
  64. logLevel: config.LOG_INFO,
  65. // Uncomment the following lines if you are using grunt's server to run the tests
  66. // proxies: {
  67. // '/': 'http://localhost:9000/'
  68. // },
  69. // URL root prevent conflicts with the site root
  70. // urlRoot: '_karma_'
  71. });
  72. };