Skip to content

Commit 989ee2b

Browse files
committed
Enable all tests
1 parent 8a1347c commit 989ee2b

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

karma.conf.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ module.exports = function(config) {
1818
'dist/schema-form.js',
1919
'dist/bootstrap-decorator.js',
2020
'test/services/schema-form-test.js',
21-
// 'test/services/decorators-test.js',
22-
// 'test/services/messages-test.js',
23-
// 'test/directives/schema-form-test.js',
24-
// 'test/directives/sf-messages-test.js',
21+
'test/services/decorators-test.js',
22+
'test/services/messages-test.js',
23+
'test/directives/schema-form-test.js',
24+
'test/directives/sf-messages-test.js',
2525
],
2626

2727
// list of files to exclude
@@ -51,7 +51,7 @@ module.exports = function(config) {
5151
// possible values:
5252
// config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN ||
5353
// config.LOG_INFO || config.LOG_DEBUG
54-
logLevel: config.LOG_ERROR,
54+
logLevel: config.LOG_DEBUG,
5555

5656
loggers: [{type: 'console'}],
5757

test/services/schema-form-test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,9 +358,6 @@ describe('schemaForm', function() {
358358

359359
//no form is implicitly ['*']
360360
var defaults = schemaForm.defaults(schema).form;
361-
console.log('defaults');
362-
console.log(JSON.stringify(defaults));
363-
//console.log(JSON.stringify(form));
364361
defaults[0].type.should.be.equal('foobar');
365362
defaults[0].title.should.be.equal('Name');
366363
defaults[1].type.should.be.equal('select');

0 commit comments

Comments
 (0)