Skip to content

Commit

Permalink
Merge pull request #50 from bdvholmes/feature/socket_io
Browse files Browse the repository at this point in the history
Mock Socket.io connections
  • Loading branch information
thoov committed Sep 2, 2015
2 parents 822e765 + bf144e7 commit f6147ee
Show file tree
Hide file tree
Showing 12 changed files with 922 additions and 76 deletions.
71 changes: 38 additions & 33 deletions dist/jshint-loader.js
Original file line number Diff line number Diff line change
@@ -1,54 +1,59 @@
module('JSHint - src');
test('src/event-factory.js should pass jshint', function() {
ok(true, 'src/event-factory.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/event-factory.js should pass jshint', function(assert) {
assert.ok(true, 'src/event-factory.js should pass jshint.');
});

module('JSHint - src');
test('src/event-target.js should pass jshint', function() {
ok(true, 'src/event-target.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/event-target.js should pass jshint', function(assert) {
assert.ok(true, 'src/event-target.js should pass jshint.');
});

module('JSHint - src/helpers');
test('src/helpers/array-helpers.js should pass jshint', function() {
ok(true, 'src/helpers/array-helpers.js should pass jshint.');
QUnit.module('JSHint - src/helpers');
QUnit.test('src/helpers/array-helpers.js should pass jshint', function(assert) {
assert.ok(true, 'src/helpers/array-helpers.js should pass jshint.');
});

module('JSHint - src/helpers');
test('src/helpers/close-codes.js should pass jshint', function() {
ok(true, 'src/helpers/close-codes.js should pass jshint.');
QUnit.module('JSHint - src/helpers');
QUnit.test('src/helpers/close-codes.js should pass jshint', function(assert) {
assert.ok(true, 'src/helpers/close-codes.js should pass jshint.');
});

module('JSHint - src/helpers');
test('src/helpers/delay.js should pass jshint', function() {
ok(true, 'src/helpers/delay.js should pass jshint.');
QUnit.module('JSHint - src/helpers');
QUnit.test('src/helpers/delay.js should pass jshint', function(assert) {
assert.ok(true, 'src/helpers/delay.js should pass jshint.');
});

module('JSHint - src/helpers');
test('src/helpers/environment-check.js should pass jshint', function() {
ok(true, 'src/helpers/environment-check.js should pass jshint.');
QUnit.module('JSHint - src/helpers');
QUnit.test('src/helpers/environment-check.js should pass jshint', function(assert) {
assert.ok(true, 'src/helpers/environment-check.js should pass jshint.');
});

module('JSHint - src/helpers');
test('src/helpers/event-object.js should pass jshint', function() {
ok(true, 'src/helpers/event-object.js should pass jshint.');
QUnit.module('JSHint - src/helpers');
QUnit.test('src/helpers/event-object.js should pass jshint', function(assert) {
assert.ok(true, 'src/helpers/event-object.js should pass jshint.');
});

module('JSHint - src');
test('src/main.js should pass jshint', function() {
ok(true, 'src/main.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/main.js should pass jshint', function(assert) {
assert.ok(true, 'src/main.js should pass jshint.');
});

module('JSHint - src');
test('src/network-bridge.js should pass jshint', function() {
ok(true, 'src/network-bridge.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/network-bridge.js should pass jshint', function(assert) {
assert.ok(true, 'src/network-bridge.js should pass jshint.');
});

module('JSHint - src');
test('src/server.js should pass jshint', function() {
ok(true, 'src/server.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/server.js should pass jshint', function(assert) {
assert.ok(true, 'src/server.js should pass jshint.');
});

module('JSHint - src');
test('src/websocket.js should pass jshint', function() {
ok(true, 'src/websocket.js should pass jshint.');
QUnit.module('JSHint - src');
QUnit.test('src/socket-io.js should pass jshint', function(assert) {
assert.ok(true, 'src/socket-io.js should pass jshint.');
});

QUnit.module('JSHint - src');
QUnit.test('src/websocket.js should pass jshint', function(assert) {
assert.ok(true, 'src/websocket.js should pass jshint.');
});
Loading

0 comments on commit f6147ee

Please sign in to comment.