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);
|
|
});
|
|
});
|