gitea源码

1234567891011
  1. import {GET, POST, PATCH, PUT, DELETE} from './fetch.ts';
  2. // tests here are only to satisfy the linter for unused functions
  3. test('exports', () => {
  4. expect(GET).toBeTruthy();
  5. expect(POST).toBeTruthy();
  6. expect(PATCH).toBeTruthy();
  7. expect(PUT).toBeTruthy();
  8. expect(DELETE).toBeTruthy();
  9. });