Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions octas/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
jest.mock('cloudinary');
jest.mock('../lib/slackUtils');

import octas from './index';
import Slack from '../lib/slackMock';
Expand All @@ -8,6 +9,7 @@ let slack: Slack = null;
beforeEach(async () => {
slack = new Slack();
process.env.CHANNEL_SANDBOX = slack.fakeChannel;
process.env.CHANNEL_GAMES = slack.fakeChannel;
await octas(slack);
});

Expand Down
Loading
Loading