Skip to content

Commit f4e116d

Browse files
committed
Deleted Firefox as test due to allow dialog, removed alerts from tests
1 parent e8cea9b commit f4e116d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

grunt.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ module.exports = function(grunt){
3131
tags: ['master'],
3232
urls: ['http://127.0.0.1:9999/test/index.html'],
3333
browsers: [{
34-
browserName: 'firefox'
35-
}, {
3634
browserName: 'chrome'
3735
}]
3836
}

test/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
//_("Database upgrade needed");
4141
};
4242
dbDeleteRequest.onerror = function(e){
43-
alert("Could not delete database, but still continuing with tests");
43+
console.log("Could not delete database, but still continuing with tests");
4444
window.setTimeout(function(){
4545
startQunitTests();
4646
nextTest();
4747
}, 1000)
4848

4949
};
5050
dbDeleteRequest.onblocked = function(e){
51-
alert("Deleting database blocked")
51+
console.log("Deleting database blocked")
5252
};
5353
});
5454

0 commit comments

Comments
 (0)