Swap entries in karma.conf so test-main.js is matched first, per suggestion from Atira to fix the failing Jasmine tests.

pull/3/head
Dave Page 2017-04-06 15:34:05 +01:00
parent 3880bc7eb8
commit fcc122f290
1 changed files with 1 additions and 1 deletions

View File

@ -15,10 +15,10 @@ module.exports = function(config) {
// list of files / patterns to load in the browser
files: [
'regression/javascript/test-main.js'
{pattern: 'regression/javascript/**/*.js', included: false},
{pattern: 'pgadmin/static/vendor/**/*.js', included: false},
{pattern: 'pgadmin/static/js/**/*.js', included: false},
'regression/javascript/test-main.js'
],