fix: add stage instance delete test

This commit is contained in:
Skillz4Killz
2022-05-11 13:25:57 +00:00
committed by GitHub
parent 06ae1101d8
commit e6febf1f60

View File

@@ -21,10 +21,9 @@ Deno.test({
assertNotEquals(edited.topic, stage.topic);
});
// TODO: why doesnt this specific test work?
// await t.step("[stage] Delete a stage instance", async () => {
// await bot.helpers.deleteStageInstance(stage.id);
// });
await t.step("[stage] Delete a stage instance", async () => {
await bot.helpers.deleteStageInstance(stage.id);
});
await bot.helpers.deleteChannel(stage.id);
},