This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
foundkey.js/test/api.ts

30 lines
584 B
TypeScript

import fetchMock from 'fetch-mock-jest';
import { request } from '../src/api';
describe('API', () => {
test('success', async () => {
fetchMock
.post('https://misskey.test/api/i', (url, options) => {
if (typeof options.body.i === 'string') {
return {
body: {
id: 'foo'
}
};
}
return 400;
});
const res = await request('https://misskey.test', 'i', {}, 'TOKEN');
expect(res).toEqual({
id: 'foo'
});
expect(fetchMock).toHaveLastFetched({
url: 'https://misskey.test/api/i',
body: { i: 'TOKEN' }
}, 'post');
});
});