add test
This commit is contained in:
parent
e537f9120c
commit
e896481228
|
@ -161,6 +161,13 @@ describe('Note', () => {
|
||||||
assert.strictEqual(deleteRes.status, 204);
|
assert.strictEqual(deleteRes.status, 204);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('text: nullのみだと怒られる', async () => {
|
||||||
|
const res = await api('/notes/create', {
|
||||||
|
text: null,
|
||||||
|
}, alice);
|
||||||
|
assert.strictEqual(res.status, 400);
|
||||||
|
});
|
||||||
|
|
||||||
test('文字数ぎりぎりで怒られない', async () => {
|
test('文字数ぎりぎりで怒られない', async () => {
|
||||||
const post = {
|
const post = {
|
||||||
text: '!'.repeat(MAX_NOTE_TEXT_LENGTH), // 3000文字
|
text: '!'.repeat(MAX_NOTE_TEXT_LENGTH), // 3000文字
|
||||||
|
|
Loading…
Reference in a new issue