Last active
May 19, 2022 14:31
-
-
Save martinlindhe/a8c4b2ddbe2c764c2079 to your computer and use it in GitHub Desktop.
Revisions
-
martinlindhe revised this gist
Nov 20, 2015 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -53,7 +53,7 @@ module.exports = function (config) { // 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 @@ -64,7 +64,7 @@ module.exports = function (config) { // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: [ 'PhantomJS', 'Chrome' ], -
martinlindhe revised this gist
Nov 20, 2015 . 1 changed file with 7 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,14 @@ describe("Alert component", function() { var c = require('./../../../resources/assets/js/components/Alert.vue'); it('should have data', function () { expect(typeof c.data).toBe('function'); }); it('should be visible', function () { var defaultData = c.data(); expect(defaultData.show).toBe(true); }); }); -
martinlindhe revised this gist
Nov 20, 2015 . 1 changed file with 39 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ <style> .Alert { padding: 2em; } .Alert-Success { border: 10px solid green; } .Alert-Error { border: 10px solid red; } </style> <template> <div class="Alert" v-bind:class="{ 'Alert-Success': type == 'success', 'Alert-Error': type == 'error', }" v-show="show"> <p> {{ msg }} </p> </div> </template> <script> export default { data() { return { show: true } }, props: ['msg', 'type'], ready() { } } </script> -
martinlindhe created this gist
Nov 20, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ describe("Alert component", function() { var alert = require('./../../../resources/assets/js/components/Alert.vue'); it('should have a created hook', function () { expect(typeof alert.created).toBe('function'); }); it('should set correct default data', function () { expect(typeof alert.data).toBe('function'); var defaultData = alert.data(); expect(defaultData.msg).toBe('hello!'); }); }); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ In order to run tests: $ npm install -g karma-cli $ npm install -g phantomjs then to start test watcher: $ karma start This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,79 @@ // Karma configuration // Generated on Fri Nov 20 2015 18:27:44 GMT+0100 (CET) module.exports = function (config) { config.set({ // base path that will be used to resolve all patterns (eg. files, exclude) basePath: '', // frameworks to use // available frameworks: https://npmjs.org/browse/keyword/karma-adapter frameworks: [ 'browserify', 'jasmine' ], // list of files / patterns to load in the browser files: [ 'tests/js/**/*Spec.js' ], // list of files to exclude exclude: [], // preprocess matching files before serving them to the browser // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { 'tests/**/*.js': ['browserify'] }, browserify: { debug: true, // debug=true to generate source maps transform: [ 'vueify' ] }, // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter 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_DEBUG, // enable / disable watching file and executing tests whenever any file changes autoWatch: true, // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: [ 'PhantomJS', //'Chrome' ], // Continuous Integration mode // if true, Karma captures browsers, runs the tests and exits singleRun: false, // Concurrency level // how many browsers should be started simultaneously concurrency: Infinity }) } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ { "private": true, "dependencies": { "babel-runtime": "^5.8", "laravel-elixir": "^3.0", "vue": "^1.0", "vue-hot-reload-api": "^1.2", "vue-i18n": "^2.2", "vue-resource": "^0.1", "vue-router": "^0.7", "vueify-insert-css": "^1.0" }, "devDependencies": { "gulp": "^3.9", "jasmine": "^2.3", "karma": "^0.13", "karma-browserify": "^4.4", "karma-chrome-launcher": "^0.2", "karma-jasmine": "^0.3", "karma-phantomjs-launcher": "^0.2", "phantomjs": "^1.9" } }