loading up the forgejo repo on tangled to test page performance
at forgejo 10 lines 299 B view raw
1import {GET, POST, PATCH, PUT, DELETE} from './fetch.js'; 2 3// tests here are only to satisfy the linter for unused functions 4test('exports', () => { 5 expect(GET).toBeTruthy(); 6 expect(POST).toBeTruthy(); 7 expect(PATCH).toBeTruthy(); 8 expect(PUT).toBeTruthy(); 9 expect(DELETE).toBeTruthy(); 10});