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