Skip to content

Commit

Permalink
fix(tests): add dependencies for sass and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsc committed Nov 25, 2016
1 parent 9316b52 commit 85ddcbd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions client/app/components/components.js
@@ -1,12 +1,10 @@
import angular from 'angular';
import Home from './home/home';
import About from './about/about';
import Test from './test/test';

let componentModule = angular.module('app.components', [
Home,
About,
Test
About
])

.name;
Expand Down
4 changes: 2 additions & 2 deletions karma.conf.js
Expand Up @@ -31,8 +31,8 @@ module.exports = function (config) {
module: {
loaders: [
{ test: /\.js/, exclude: [/app\/lib/, /node_modules/], loader: 'babel' },
{ test: /\.html/, loader: 'raw' },
{ test: /\.styl$/, loader: 'style!css!stylus' },
{ test: /\.html$/, loader: 'raw' },
{ test: /\.(scss|sass)$/, loader: 'style!css!sass' },
{ test: /\.css$/, loader: 'style!css' }
]
}
Expand Down
2 changes: 2 additions & 0 deletions package.json
Expand Up @@ -40,8 +40,10 @@
"mocha": "^2.3.0",
"ng-annotate-loader": "0.0.10",
"node-libs-browser": "^0.5.0",
"node-sass": "^3.13.0",
"raw-loader": "^0.5.1",
"run-sequence": "^1.1.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.12.2",
"supports-color": "^3.1.2",
"webpack": "^1.13.3",
Expand Down

0 comments on commit 85ddcbd

Please sign in to comment.