This commit is contained in:
syuilo 2019-04-15 12:20:48 +09:00
parent 31c26354c5
commit 772063aade
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
5 changed files with 39 additions and 83 deletions

View file

@ -18,8 +18,6 @@ import * as assert from 'assert';
import * as childProcess from 'child_process';
import { async, signup, request, post, react, uploadFile } from './utils';
import { kinds } from '../src/server/api/kinds';
describe('API', () => {
let p: childProcess.ChildProcess;
@ -967,13 +965,5 @@ describe('API', () => {
assert.strictEqual(res.body[0].id, alicePost.id);
}));
});
describe('kinds', () => {
it('登録されていないパーミッションを利用しているAPIがない', () => {
const res = kinds();
assert.strictEqual(typeof res === 'object', true);
});
});
});
*/