mirror of
https://github.com/unmojang/node-minecraft-protocol.git
synced 2025-09-29 06:03:33 -04:00
Use it.skip instead of commenting
This commit is contained in:
parent
f0a7c1b22d
commit
482d32427d
12
test/test.js
12
test/test.js
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user