#60 include html and css in tests

This commit is contained in:
Mario Romano
2016-05-17 10:45:02 +01:00
parent f06f7d75cd
commit ce0e0d3598
4 changed files with 9 additions and 3 deletions

View File

@@ -23,6 +23,8 @@ module.exports = function (config) {
// paths loaded via module imports
{pattern: 'dist/**/*.js', included: false, watched: true},
{pattern: 'dist/**/*.html', included: true, served: true, watched: true},
{pattern: 'dist/**/*.css', included: true, served: true, watched: true},
// paths to support debugging with source maps in dev tools
{pattern: 'src/**/*.ts', included: false, watched: false},
@@ -71,8 +73,6 @@ module.exports = function (config) {
{type: 'json', subdir: '.', file: 'coverage-final.json'},
{type: 'html'}
]
},
singleRun: true
}
})
};