Use it.skip instead of commenting

This commit is contained in:
roblabla 2015-04-26 13:02:59 +00:00
parent f0a7c1b22d
commit 482d32427d

View File

@ -326,8 +326,8 @@ describe("client", function() {
}); });
}); });
}); });
it("connects successfully - online mode (STUBBED)", function(done) { it.skip("connects successfully - online mode (STUBBED)", function(done) {
/*startServer({ 'online-mode': 'true' }, function() { startServer({ 'online-mode': 'true' }, function() {
var client = mc.createClient({ var client = mc.createClient({
username: process.env.MC_USERNAME, username: process.env.MC_USERNAME,
password: process.env.MC_PASSWORD, password: process.env.MC_PASSWORD,
@ -352,11 +352,11 @@ describe("client", function() {
client.on('chat', function(packet) { client.on('chat', function(packet) {
done(); done();
}); });
});*/ });
done(); done();
}); });
it("connects successfully - offline mode (STUBBED)", function(done) { it.skip("connects successfully - offline mode (STUBBED)", function(done) {
/*startServer({ 'online-mode': 'false' }, function() { startServer({ 'online-mode': 'false' }, function() {
var client = mc.createClient({ var client = mc.createClient({
username: 'Player', username: 'Player',
}); });
@ -400,7 +400,7 @@ describe("client", function() {
done(); done();
} }
}); });
});*/ });
done(); done();
}); });
it("gets kicked when no credentials supplied in online mode", function(done) { it("gets kicked when no credentials supplied in online mode", function(done) {