gitea-local/web_src/js/modules/fetch.test.js
2024-08-07 15:56:31 +08:00

11 lines
299 B
JavaScript
Executable File

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