This commit is contained in:
dakkar 2025-05-13 16:30:41 +01:00
parent 8e31774670
commit 94b07b2bc3
2 changed files with 3 additions and 4 deletions

View file

@ -155,11 +155,11 @@ async function assertDirectError(response: Response, status: number, error: stri
describe('OAuth', () => {
test('fake pass', () => {
assert.ok(true, 'fake pass');
})
});
});
false && // these tests won't pass until we integrate Misskey's OAuth code with ours
describe('OAuth', () => {
// these tests won't pass until we integrate Misskey's OAuth code with ours
if (false) describe('OAuth', () => {
let fastify: FastifyInstance;
let alice: misskey.entities.SignupResponse;

View file

@ -692,7 +692,6 @@ export async function captureWebhook<T = SystemWebhookPayload>(postAction: () =>
return JSON.parse(result) as T;
}
// the packed user inside each note returned by `users/notes` has the
// latest `notesCount`, not the count at the time the note was
// created, so we override it