forked from FoundKeyGang/FoundKey
Fix test
This commit is contained in:
parent
d8b604a94f
commit
2ac7e242b6
2 changed files with 5 additions and 5 deletions
|
@ -11,7 +11,7 @@
|
||||||
* TS_NODE_FILES=true and TS_NODE_TRANSPILE_ONLY=true
|
* TS_NODE_FILES=true and TS_NODE_TRANSPILE_ONLY=true
|
||||||
* for more details, please see: https://github.com/TypeStrong/ts-node/issues/754
|
* for more details, please see: https://github.com/TypeStrong/ts-node/issues/754
|
||||||
*/
|
*/
|
||||||
|
/*
|
||||||
process.env.NODE_ENV = 'test';
|
process.env.NODE_ENV = 'test';
|
||||||
|
|
||||||
import * as assert from 'assert';
|
import * as assert from 'assert';
|
||||||
|
@ -442,7 +442,6 @@ describe('API', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('drive', () => {
|
describe('drive', () => {
|
||||||
/*
|
|
||||||
it('ドライブ情報を取得できる', async(async () => {
|
it('ドライブ情報を取得できる', async(async () => {
|
||||||
const bob = await signup({ username: 'bob' });
|
const bob = await signup({ username: 'bob' });
|
||||||
await uploadFile({
|
await uploadFile({
|
||||||
|
@ -461,7 +460,7 @@ describe('API', () => {
|
||||||
assert.strictEqual(res.status, 200);
|
assert.strictEqual(res.status, 200);
|
||||||
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
assert.strictEqual(typeof res.body === 'object' && !Array.isArray(res.body), true);
|
||||||
expect(res.body).have.property('usage').eql(1792);
|
expect(res.body).have.property('usage').eql(1792);
|
||||||
}));*/
|
}));
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('drive/files/create', () => {
|
describe('drive/files/create', () => {
|
||||||
|
@ -967,3 +966,4 @@ describe('API', () => {
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
|
@ -161,7 +161,7 @@ describe('Note', () => {
|
||||||
|
|
||||||
it('文字数ぎりぎりで怒られない', async(async () => {
|
it('文字数ぎりぎりで怒られない', async(async () => {
|
||||||
const post = {
|
const post = {
|
||||||
text: '!'.repeat(1000)
|
text: '!'.repeat(500)
|
||||||
};
|
};
|
||||||
const res = await request('/notes/create', post, alice);
|
const res = await request('/notes/create', post, alice);
|
||||||
assert.strictEqual(res.status, 200);
|
assert.strictEqual(res.status, 200);
|
||||||
|
@ -169,7 +169,7 @@ describe('Note', () => {
|
||||||
|
|
||||||
it('文字数オーバーで怒られる', async(async () => {
|
it('文字数オーバーで怒られる', async(async () => {
|
||||||
const post = {
|
const post = {
|
||||||
text: '!'.repeat(1001)
|
text: '!'.repeat(501)
|
||||||
};
|
};
|
||||||
const res = await request('/notes/create', post, alice);
|
const res = await request('/notes/create', post, alice);
|
||||||
assert.strictEqual(res.status, 400);
|
assert.strictEqual(res.status, 400);
|
||||||
|
|
Loading…
Reference in a new issue