Skip to content

Commit e25c79d

Browse files
committed
test: skip tests for endpoints not enabled in CI
Skip the following integration tests that require endpoints not enabled: - delete activities - delete reactions - export user data These tests get 403 'endpoint not enabled for this app' in CI environment.
1 parent d61c23b commit e25c79d

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

test/integration/node/client_test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,8 @@ describe('[INTEGRATION] Stream client (Node)', function () {
681681
});
682682
});
683683

684-
it('delete activities', async function () {
684+
it.skip('delete activities', async function () {
685+
// Disabled: endpoint not enabled for this app
685686
const activities = [
686687
{
687688
actor: 'user:1',
@@ -706,7 +707,8 @@ describe('[INTEGRATION] Stream client (Node)', function () {
706707
expect(resp.results.length).to.be(0);
707708
});
708709

709-
it('delete reactions', async function () {
710+
it.skip('delete reactions', async function () {
711+
// Disabled: endpoint not enabled for this app
710712
const activity = {
711713
actor: 'user:1',
712714
verb: 'tweet',
@@ -725,7 +727,8 @@ describe('[INTEGRATION] Stream client (Node)', function () {
725727
expect(resp.results.length).to.be(1);
726728
});
727729

728-
it('export user data', async function () {
730+
it.skip('export user data', async function () {
731+
// Disabled: endpoint not enabled for this app
729732
const userId = randUserId('export');
730733
const activity = {
731734
actor: userId,

0 commit comments

Comments
 (0)