mirror of https://github.com/go-gitea/gitea.git
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import {GET, POST, PATCH, PUT, DELETE} from './fetch.ts';
|
|
|
|
// 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();
|
|
});
|