1import {GET, POST, PATCH, PUT, DELETE} from './fetch.js';
2
3// tests here are only to satisfy the linter for unused functions
4test('exports', () => {
5 expect(GET).toBeTruthy();
6 expect(POST).toBeTruthy();
7 expect(PATCH).toBeTruthy();
8 expect(PUT).toBeTruthy();
9 expect(DELETE).toBeTruthy();
10});