2024-07-07 15:32:30 +00:00
|
|
|
import {GET, POST, PATCH, PUT, DELETE} from './fetch.ts';
|
2023-09-11 08:25:10 +00:00
|
|
|
|
|
|
|
// tests here are only to satisfy the linter for unused functions
|
|
|
|
test('exports', () => {
|
|
|
|
expect(GET).toBeTruthy();
|
|
|
|
expect(POST).toBeTruthy();
|
|
|
|
expect(PATCH).toBeTruthy();
|
|
|
|
expect(PUT).toBeTruthy();
|
|
|
|
expect(DELETE).toBeTruthy();
|
|
|
|
});
|