You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
550 B
TypeScript
22 lines
550 B
TypeScript
// import { exampleEndpoint } from '../../src/api';
|
|
// import { contextMock } from '../../__mocks__/context.mock';
|
|
// import consola from 'consola';
|
|
|
|
describe('[Integration Boilerplate API] exampleEndpoint', () => {
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('calls commerce endpoint with proper parameters', async () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
it('validates paramerets', async () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
|
|
it('throws an error when request fails', async () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|