Skip to content

Commit

Permalink
test: add skip EE only
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed May 15, 2024
1 parent a74da00 commit 4d68241
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/meteor/tests/e2e/read-receipts.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { IS_EE } from './config/constants';
import { createAuxContext } from './fixtures/createAuxContext';
import { Users } from './fixtures/userStates';
import { HomeChannel } from './page-objects';
Expand All @@ -10,6 +11,8 @@ test.describe.serial('read-receipts', () => {
let poHomeChannel: HomeChannel;
let targetChannel: string;

test.skip(!IS_EE, 'Enterprise Only');

test.beforeAll(async ({ api }) => {
await setSettingValueById(api, 'Message_Read_Receipt_Enabled', true);
targetChannel = await createTargetChannel(api);
Expand Down

0 comments on commit 4d68241

Please sign in to comment.