diff --git a/game-server/test/guild.test.ts b/game-server/test/guild.test.ts index 01ea71d36..02e7941f2 100644 --- a/game-server/test/guild.test.ts +++ b/game-server/test/guild.test.ts @@ -130,7 +130,7 @@ describe('军团测试', function() { }); }); - it('获取申请列表', function (done) { + it.skip('获取申请列表', function (done) { pinusClient.request('battle.guildHandler.getApplyList', { }, (res) => { // 消息回调 expect(res).to.be.an('object'); @@ -152,7 +152,7 @@ describe('军团测试', function() { }); }); - it('团长查看可邀请列表', function (done) { + it.skip('团长查看可邀请列表', function (done) { pinusClient.request('battle.guildHandler.getInviteMemberList', { }, (res) => { // 消息回调 expect(res).to.be.an('object'); @@ -173,7 +173,7 @@ describe('军团测试', function() { }); }); - it('查看军团成员列表', function (done) { + it.skip('查看军团成员列表', function (done) { let index = Math.floor(Math.random() * guildList.length); if(guildList[index]) { let code = guildList[index].code;