mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 05:43:30 +03:00
Tests: avoid leaking into global scope
This means that this will pass without error: http://127.0.0.1:8000/test/test.html?noglobals=true
This commit is contained in:
parent
dcbb338083
commit
c850121e9b
1 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
/* global module, asyncTest, $, ok, equal, notEqual, start, test, Util */
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
||||||
module('Basic');
|
module('Basic');
|
||||||
|
@ -86,8 +88,9 @@
|
||||||
|
|
||||||
// ----------
|
// ----------
|
||||||
asyncTest('Click', function() {
|
asyncTest('Click', function() {
|
||||||
var viewport = viewer.viewport;
|
var viewport = viewer.viewport,
|
||||||
center = viewport.getCenter();
|
center = viewport.getCenter();
|
||||||
|
|
||||||
ok(center.x === 0.5 && center.y === 0.5, 'We start out unpanned');
|
ok(center.x === 0.5 && center.y === 0.5, 'We start out unpanned');
|
||||||
equal(viewport.getZoom(), 1, 'We start out unzoomed');
|
equal(viewport.getZoom(), 1, 'We start out unzoomed');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue