Skip to content

Commit

Permalink
test(ons-gesture-detector): improved code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
frandiox committed Jul 28, 2015
1 parent 69d044b commit 35a6419
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/elements/ons-gesture-detector.spec.es6
@@ -1,5 +1,9 @@
describe('ons-gesture-detector', () => {
it('provides \'OnsGestureDetectorElement\' global variable', () => {
describe('OnsGestureDetectorElement', () => {
it('should exist', () => {
expect(window.OnsGestureDetectorElement).to.be.ok;
});

it('is correctly created', () => {
expect(new OnsGestureDetectorElement).to.be.ok;
});
});

0 comments on commit 35a6419

Please sign in to comment.