mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-14 19:04:59 -05:00
Use it.skip instead of commenting
This commit is contained in:
parent
f0a7c1b22d
commit
482d32427d
1 changed files with 6 additions and 6 deletions
12
test/test.js
12
test/test.js
|
@ -326,8 +326,8 @@ describe("client", function() {
|
|||
});
|
||||
});
|
||||
});
|
||||
it("connects successfully - online mode (STUBBED)", function(done) {
|
||||
/*startServer({ 'online-mode': 'true' }, function() {
|
||||
it.skip("connects successfully - online mode (STUBBED)", function(done) {
|
||||
startServer({ 'online-mode': 'true' }, function() {
|
||||
var client = mc.createClient({
|
||||
username: process.env.MC_USERNAME,
|
||||
password: process.env.MC_PASSWORD,
|
||||
|
@ -352,11 +352,11 @@ describe("client", function() {
|
|||
client.on('chat', function(packet) {
|
||||
done();
|
||||
});
|
||||
});*/
|
||||
});
|
||||
done();
|
||||
});
|
||||
it("connects successfully - offline mode (STUBBED)", function(done) {
|
||||
/*startServer({ 'online-mode': 'false' }, function() {
|
||||
it.skip("connects successfully - offline mode (STUBBED)", function(done) {
|
||||
startServer({ 'online-mode': 'false' }, function() {
|
||||
var client = mc.createClient({
|
||||
username: 'Player',
|
||||
});
|
||||
|
@ -400,7 +400,7 @@ describe("client", function() {
|
|||
done();
|
||||
}
|
||||
});
|
||||
});*/
|
||||
});
|
||||
done();
|
||||
});
|
||||
it("gets kicked when no credentials supplied in online mode", function(done) {
|
||||
|
|
Loading…
Reference in a new issue