Skip to content

Commit

Permalink
fix: コメントアウト
Browse files Browse the repository at this point in the history
  • Loading branch information
n1lsqn committed Jan 12, 2024
1 parent 439ed21 commit 461e94f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/backend/test/e2e/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ describe('Endpoints', () => {
});
});

/*
describe('channels/search', () => {
test('空白検索で一覧を取得できる', async () => {
await api('/channels/create', {
Expand Down Expand Up @@ -494,6 +495,7 @@ describe('Endpoints', () => {
assert.strictEqual(res.body.length, 2);
});
});
*/

describe('drive', () => {
test('ドライブ情報を取得できる', async () => {
Expand Down
2 changes: 2 additions & 0 deletions packages/backend/test/e2e/timelines.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,7 @@ describe('Timelines', () => {
assert.strictEqual(res.body.find((note: any) => note.id === aliceNote.id).text, 'hi');
});

/*
test.concurrent('チャンネル投稿が含まれない', async () => {
const [alice, bob] = await Promise.all([signup(), signup()]);
Expand All @@ -1104,6 +1105,7 @@ describe('Timelines', () => {
assert.strictEqual(res.body.some((note: any) => note.id === bobNote.id), false);
});
*/

test.concurrent('[withReplies: false] 他人への返信が含まれない', async () => {
const [alice, bob, carol] = await Promise.all([signup(), signup(), signup()]);
Expand Down

0 comments on commit 461e94f

Please sign in to comment.