even the tests are linted!
This commit is contained in:
parent
6f7a77e355
commit
c666ee8022
1 changed files with 7 additions and 7 deletions
14
test/test.js
14
test/test.js
|
@ -4,6 +4,13 @@ suite('Bärneruhr', function () {
|
|||
var $ = jQuery;
|
||||
var elem;
|
||||
|
||||
function cleanupCookies(id) {
|
||||
$.removeCookie('uhr-language' + id);
|
||||
$.removeCookie('uhr-mode' + id);
|
||||
$.removeCookie('uhr-status' + id);
|
||||
$.removeCookie('uhr-theme' + id);
|
||||
}
|
||||
|
||||
setup(function () {
|
||||
elem = $('#u');
|
||||
});
|
||||
|
@ -21,13 +28,6 @@ suite('Bärneruhr', function () {
|
|||
window.location.hash = '';
|
||||
});
|
||||
|
||||
function cleanupCookies(id) {
|
||||
$.removeCookie('uhr-language' + id);
|
||||
$.removeCookie('uhr-mode' + id);
|
||||
$.removeCookie('uhr-status' + id);
|
||||
$.removeCookie('uhr-theme' + id);
|
||||
}
|
||||
|
||||
test('create and destroy widget', function () {
|
||||
var uhr = elem.uhr('instance');
|
||||
var id;
|
||||
|
|
Loading…
Reference in a new issue