summaryrefslogtreecommitdiffstats
path: root/web_src/js/modules/fetch.test.js
blob: e4bec3ced9d8bfd893433830acb8680d1e28d6c2 (plain)
1
2
3
4
5
6
7
8
9
10
import {GET, POST, PATCH, PUT, DELETE} from './fetch.js';

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