mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-28 09:41:57 +00:00
- fixes #61 - dont clear nodes cache if topo is the same - combined stores that were interdependent - dont show topology grouping menu if unsupported - also harmonized some variable names - removed old grouping switcher - moved topo actions to app actions, removed search - get correct topology url - first JS test using Jest - make tests run on circle using the build container. - replaced jest test runner with karma/jasmine - Use debian for UI build and test container. - updated karma-browserify
24 lines
396 B
JavaScript
24 lines
396 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
browsers: [
|
|
'PhantomJS'
|
|
],
|
|
files: [
|
|
'../app/**/__tests__/*.js'
|
|
],
|
|
frameworks: [
|
|
'jasmine', 'browserify'
|
|
],
|
|
preprocessors: {
|
|
'../app/**/__tests__/*.js': ['browserify']
|
|
},
|
|
browserify: {
|
|
debug: true,
|
|
transform: ['reactify']
|
|
},
|
|
reporters: [
|
|
'dots'
|
|
]
|
|
});
|
|
};
|