Skip to content

Commit

Permalink
[test] Remove IE6 and IE7 tests (#1164)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 22, 2017
1 parent c58ecfc commit 57cee21
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: node_js
node_js:
- '4'
- '6'
- '7'
- '8'
sudo: false
git:
depth: 1
Expand All @@ -16,10 +16,6 @@ matrix:
env: BROWSER_NAME=safari BROWSER_VERSION=latest
- node_js: 'node'
env: BROWSER_NAME=firefox BROWSER_VERSION=latest
- node_js: 'node'
env: BROWSER_NAME=ie BROWSER_VERSION=6
- node_js: 'node'
env: BROWSER_NAME=ie BROWSER_VERSION=7
- node_js: 'node'
env: BROWSER_NAME=ie BROWSER_VERSION=8
- node_js: 'node'
Expand Down
2 changes: 0 additions & 2 deletions test/socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ describe('socket', function () {
var socket = io('/', { forceNew: true, query: { e: 'f' } });

socket.emit('getHandshake', function (handshake) {
console.log('getHandhskae', handshake);
expect(handshake.query.e).to.be('f');
socket.disconnect();
done();
Expand All @@ -122,7 +121,6 @@ describe('socket', function () {
var socket = io('/?c=d', { forceNew: true });

socket.emit('getHandshake', function (handshake) {
console.log('getHandhskae', handshake);
expect(handshake.query.c).to.be('d');
socket.disconnect();
done();
Expand Down

0 comments on commit 57cee21

Please sign in to comment.