Commit fea741d7 by Torkel Ödegaard

shore: minor cleanup

parent 0c86241c
...@@ -60,7 +60,7 @@ npm run test ...@@ -60,7 +60,7 @@ npm run test
Run tests in watch mode Run tests in watch mode
```bash ```bash
npm run test-watch npm run watch-test
``` ```
### Recompile backend on source change ### Recompile backend on source change
......
...@@ -11,7 +11,7 @@ module.exports = function(config) { ...@@ -11,7 +11,7 @@ module.exports = function(config) {
// list of files / patterns to load in the browser // list of files / patterns to load in the browser
files: [ files: [
'public/test/index.ts', { pattern: 'public/test/index.ts', watched: false }
], ],
preprocessors: { preprocessors: {
...@@ -19,7 +19,6 @@ module.exports = function(config) { ...@@ -19,7 +19,6 @@ module.exports = function(config) {
}, },
webpack: webpackTestConfig, webpack: webpackTestConfig,
webpackServer: { webpackServer: {
noInfo: true, // please don't spam the console when running in karma! noInfo: true, // please don't spam the console when running in karma!
}, },
......
...@@ -5,8 +5,6 @@ import angular from 'angular'; ...@@ -5,8 +5,6 @@ import angular from 'angular';
import helpers from 'test/specs/helpers'; import helpers from 'test/specs/helpers';
import {ElasticDatasource} from "../datasource"; import {ElasticDatasource} from "../datasource";
console.log(ElasticDatasource);
describe('ElasticDatasource', function() { describe('ElasticDatasource', function() {
var ctx = new helpers.ServiceTestContext(); var ctx = new helpers.ServiceTestContext();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment