Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
chore: disable apollo integration tests (#1904)
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfryan committed Nov 14, 2023
1 parent abf0804 commit f9318cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion apps/api/routes/engagement/v2/account.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ describe('account', () => {
};
});

describe.each(['outreach', 'apollo', 'salesloft'])('%s', (providerName) => {
// TODO: re-enable apollo tests
describe.each(['outreach', 'salesloft'])('%s', (providerName) => {
test(`Test that POST followed by GET has correct data and properly cache invalidates`, async () => {
const response = await apiClient.post<CreateAccountResponse>(
'/engagement/v2/accounts',
Expand Down
3 changes: 2 additions & 1 deletion apps/api/routes/engagement/v2/contact.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ describe('contact', () => {
};
});

describe.each(['outreach', 'apollo', 'salesloft'])('%s', (providerName) => {
// TODO: re-enable apollo tests
describe.each(['outreach', 'salesloft'])('%s', (providerName) => {
test(`Test that POST followed by GET has correct data and properly cache invalidates`, async () => {
const response = await apiClient.post<CreateContactResponse>(
'/engagement/v2/contacts',
Expand Down
5 changes: 3 additions & 2 deletions apps/api/routes/engagement/v2/sequence.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @jest-environment ./integration-test-environment
*/

import {
import type {
CreateContactRequest,
CreateContactResponse,
CreateSequenceRequest,
Expand Down Expand Up @@ -104,7 +104,8 @@ describe('sequence', () => {
);
});

describe.each(['outreach', 'salesloft', 'apollo'])('%s', (providerName) => {
// TODO: re-enable apollo tests
describe.each(['outreach', 'salesloft'])('%s', (providerName) => {
test(`Test that POST followed by GET has correct data and properly cache invalidates`, async () => {
const response = await apiClient.post<CreateSequenceResponse>(
'/engagement/v2/sequences',
Expand Down

0 comments on commit f9318cc

Please sign in to comment.