We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04cceb3 commit cde2ddbCopy full SHA for cde2ddb
test/ngTouch/touchSpec.js
@@ -0,0 +1,27 @@
1
+'use strict';
2
+
3
+describe('ngTouch', function() {
4
+ beforeEach(module('ngTouch'));
5
+ var _$touchProvider;
6
7
+ describe('$touchProvider', function() {
8
9
10
+ it('should expose the $touchProvider', function() {
11
+ module(function($touchProvider) {
12
+ _$touchProvider = $touchProvider;
13
+ });
14
15
+ inject(function() {
16
+ expect(_$touchProvider).toBeDefined();
17
18
19
20
21
+ it('should expose the $touch service', function() {
22
+ inject(function($touch) {
23
+ expect($touch).toBeDefined();
24
25
26
27
+});
0 commit comments