mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 03:33:08 +02:00
311c2172d7
This reverts commit 9b5aeb76d8
.
29 lines
841 B
TypeScript
29 lines
841 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
import * as assert from 'assert';
|
|
import { relativeFetch } from '../utils.js';
|
|
|
|
describe('nodeinfo', () => {
|
|
test('nodeinfo 2.1', async () => {
|
|
const res = await relativeFetch('nodeinfo/2.1');
|
|
assert.ok(res.ok);
|
|
assert.strictEqual(res.headers.get('Access-Control-Allow-Origin'), '*');
|
|
|
|
const nodeInfo = await res.json() as any;
|
|
assert.strictEqual(nodeInfo.software.name, 'misskey');
|
|
});
|
|
|
|
test('nodeinfo 2.0', async () => {
|
|
const res = await relativeFetch('nodeinfo/2.0');
|
|
assert.ok(res.ok);
|
|
assert.strictEqual(res.headers.get('Access-Control-Allow-Origin'), '*');
|
|
|
|
const nodeInfo = await res.json() as any;
|
|
assert.strictEqual(nodeInfo.software.name, 'misskey');
|
|
});
|
|
});
|