mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 01:04:25 +00:00
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
|
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();
|
||
|
});
|