Skip to content

Commit

Permalink
Fixes main ZingTouch test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Schultz committed Jan 6, 2017
1 parent a7d2dd8 commit c1d5bfc
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -5,3 +5,5 @@ bower_components/
.idea/
playground/
docs/
yarn-error.log
examples/
3 changes: 3 additions & 0 deletions karma.conf.js
Expand Up @@ -17,5 +17,8 @@ module.exports = function(config) {
webpack: webpackConfig,
webpackMiddleware: {noInfo: true},
singleRun: true,
client: {
captureConsole: true,
},
});
};
2 changes: 1 addition & 1 deletion test/ZingTouch.spec.js
@@ -1,4 +1,4 @@
import {ZingTouch} from './../src/ZingTouch.js';
import ZingTouch from './../src/ZingTouch.js';

/** @test {ZingTouch} */
describe('ZingTouch', function() {
Expand Down
3 changes: 2 additions & 1 deletion test/core/classes/Binder.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Binder.js
* Tests Binder class
Expand Down Expand Up @@ -31,4 +33,3 @@ describe('Binder', function() {
}
});
});

2 changes: 2 additions & 0 deletions test/core/classes/Binding.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Binding.js
* Tests Binding class
Expand Down
2 changes: 2 additions & 0 deletions test/core/classes/Input.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Binding.js
* Tests Binding class
Expand Down
2 changes: 2 additions & 0 deletions test/core/classes/Region.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Region.spec..js
* Tests Region class
Expand Down
2 changes: 2 additions & 0 deletions test/core/classes/state.spec.js
@@ -1,3 +1,5 @@
'use strict';

import State from './../../../src/core/classes/State.js';
import Gesture from './../../../src/gestures/Gesture.js';

Expand Down
2 changes: 2 additions & 0 deletions test/core/util.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file utils.js
* Tests the user-facing API, ensuring the object functions
Expand Down
3 changes: 2 additions & 1 deletion test/gestures/Gesture.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Gesture.js
* Tests Gesture class
Expand All @@ -18,4 +20,3 @@ describe('Gesture.getType', function() {
expect(_gesture.getType()).to.equal(null);
});
});

2 changes: 2 additions & 0 deletions test/gestures/Tap.spec.js
@@ -1,3 +1,5 @@
'use strict';

/**
* @file Tap.js
* Tests Tap class
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Expand Up @@ -13,6 +13,7 @@ const config = {
output: {
filename: filename,
},
devtool: 'source-map',
module: {
loaders: [
{
Expand Down

0 comments on commit c1d5bfc

Please sign in to comment.