Skip to content

Commit

Permalink
other: Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-mazepa committed Dec 2, 2024
1 parent 639b4d0 commit ab6ce01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 25 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { IInboxPlacementsProvidersClient } from '../../../Interfaces/InboxPlacements/providers/InboxPlacementsProviders';
import { InboxPlacementsProvider, InboxPlacementsProviderAPIShape, InboxPlacementsProvidersList, InboxPlacementsProvidersListAPIResponse } from '../../../Types/InboxPlacements';
import {
InboxPlacementsProvider,
InboxPlacementsProviderAPIShape,
InboxPlacementsProvidersList,
InboxPlacementsProvidersListAPIResponse
} from '../../../Types/InboxPlacements';
import Request from '../../common/Request';

export default class InboxPlacementsProvidersClient implements IInboxPlacementsProvidersClient {
Expand Down
24 changes: 0 additions & 24 deletions test/InboxPlacements.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import SeedsListsClient from '../lib/Classes/InboxPlacements/SeedsLists/SeedsLis
import InboxPlacementsResultsClient from '../lib/Classes/InboxPlacements/Results/InboxPlacementsResultsClient';
import InboxPlacementsProvidersClient from '../lib/Classes/InboxPlacements/providers/InboxPlacementsProviders';


// TODO: fix types
describe('Inbox Placements Client', () => {
let client: IInboxPlacementsClient;
Expand All @@ -35,29 +34,6 @@ describe('Inbox Placements Client', () => {

describe('runTest', () => {
it('runs inbox placements test', async () => {
const providers = [
{
domain: 'aol.com',
display_name: 'AOL',
region: 'Global',
created_at: '2023-01-04T17:40:03.400Z',
updated_at: '2023-02-17T17:20:12.172Z'
},
{
domain: 'att.net',
display_name: 'AT&T',
region: 'UnitedStates',
created_at: '2023-01-04T17:42:30.576Z',
updated_at: '2023-02-17T17:20:20.664Z'
},
{
domain: 'comcast.net',
display_name: 'Comcast / Xfinity',
region: 'United States',
created_at: '2023-02-16T20:24:10.789Z',
updated_at: '2023-02-16T20:24:10.789Z'
}
];
api.post('/v4/inbox/tests').reply(200, {
result_id: 'test_result_id',
links: {
Expand Down

0 comments on commit ab6ce01

Please sign in to comment.