summaryrefslogtreecommitdiffstats
path: root/web_src/js/modules/fetch.test.js
blob: ec0377b4d90c4e62a542ccf92fcb056c0ad096c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
import {test, expect} from 'vitest';
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();
});