Karma conf and angular js

This commit is contained in:
Ben Ramey
2014-03-08 19:22:54 -06:00
parent d95844666a
commit 364f497e3f
3 changed files with 21676 additions and 1 deletions

21605
assets/linker/js/vendor/angular.js vendored Normal file

File diff suppressed because it is too large Load Diff

68
tests.conf.js Normal file
View File

@@ -0,0 +1,68 @@
// Karma configuration
// Generated on Sat Mar 08 2014 19:22:15 GMT-0600 (CST)
module.exports = function(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '',
// frameworks to use
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'tests/**/*.js'
],
// list of files to exclude
exclude: [
],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
reporters: ['progress'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera (has to be installed with `npm install karma-opera-launcher`)
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['Chrome'],
// If browser does not capture in given timeout [ms], kill it
captureTimeout: 60000,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};

View File

@@ -1,5 +1,5 @@
doctype html
html(lang="en")
html(lang="en",ng-app="lunchApp")
head
title Lunch
// STYLES
@@ -9,6 +9,7 @@ html(lang="en")
body
#page.container
div Nothing here {{ 'yet' + '!' }}
block content
// TEMPLATES
@@ -21,4 +22,5 @@ html(lang="en")
script(type="text/javascript", src="/linker/js/vendor/bootstrap.js")
script(type="text/javascript", src="/linker/js/app.js")
script(type="text/javascript", src="/linker/js/features/socket.js")
script(type="text/javascript", src="/linker/js/vendor/angular.js")
// SCRIPTS END