Skip to content

Instantly share code, notes, and snippets.

@yanatan16
Created June 12, 2014 19:22
Show Gist options
  • Save yanatan16/8892079385f099f83779 to your computer and use it in GitHub Desktop.
Save yanatan16/8892079385f099f83779 to your computer and use it in GitHub Desktop.
Testing engine.io-client 1.0 on android
  • Clone engine.io-client
git clone https://github.com/Automattic/engine.io-client
cd engine.io-client
npm install
  • Start a test server
ZUUL_PORT=8080 node test/support/server.js
  • Start a localtunnel
localtunnel 8080
  • Copy in the custom.js file from this gist, replacing the sockte address with the localtunnel address
  • Adjust the .zuul.yml file like so:
ui: mocha-bdd
browsers:
  - name: android
    version: latest
  • Run the zuul test
zuul -- test/custom.js
var expect = require('expect.js');
var eio = require('../');
require('debug').enable('*');
describe('connection', function() {
this.timeout(20000);
it('should connect to me', function(done){
var socket = new eio.Socket('ws://FILL IN YOUR LOCALTUNNEL ADDRESS');
socket.on('open', function () {
socket.on('message', function (data) {
expect(data).to.equal('hi');
socket.close();
done();
});
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment