mirror of
https://github.com/actions/setup-python.git
synced 2025-06-13 15:57:13 +02:00
Initial pass
This commit is contained in:
38
node_modules/psl/karma.conf.js
generated
vendored
Normal file
38
node_modules/psl/karma.conf.js
generated
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
'use strict';
|
||||
|
||||
|
||||
module.exports = function (config) {
|
||||
|
||||
config.set({
|
||||
|
||||
browsers: ['PhantomJS'],
|
||||
|
||||
frameworks: ['browserify', 'mocha'],
|
||||
|
||||
files: [
|
||||
'test/**/*.spec.js'
|
||||
],
|
||||
|
||||
preprocessors: {
|
||||
'test/**/*.spec.js': ['browserify']
|
||||
},
|
||||
|
||||
reporters: ['mocha'],
|
||||
|
||||
client: {
|
||||
mocha: {
|
||||
reporter: 'tap'
|
||||
}
|
||||
},
|
||||
|
||||
plugins: [
|
||||
'karma-browserify',
|
||||
'karma-mocha',
|
||||
'karma-mocha-reporter',
|
||||
'karma-phantomjs-launcher'
|
||||
]
|
||||
|
||||
});
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user