tests: disable timeouts for server setup

This commit is contained in:
Johann150 2023-05-08 00:07:40 +02:00
parent 2e32715d36
commit ac81acfe9d
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
11 changed files with 21 additions and 2 deletions

View File

@ -8,6 +8,7 @@ describe('API visibility', () => {
let p: childProcess.ChildProcess;
before(async () => {
this.timeout(0);
p = await startServer();
});

View File

@ -11,6 +11,7 @@ describe('API', () => {
let carol: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' });

View File

@ -13,6 +13,8 @@ describe('Block', () => {
let carol: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' });
@ -65,9 +67,9 @@ describe('Block', () => {
assert.strictEqual(res.body.error.code, 'BLOCKED');
}));
// TODO: test that blocked user cannot be included in user list
it('cannot include blocked users in user lists');
// TODO: test that blocked user is removed from user list
it('removes users from user lists');
it('local timeline does not contain blocked users', async(async () => {
const aliceNote = await post(alice);

View File

@ -23,6 +23,7 @@ describe('Fetch resource', () => {
let alicesPost: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
alicesPost = await post(alice, {

View File

@ -12,6 +12,8 @@ describe('FF visibility', () => {
let follower: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' });

View File

@ -13,6 +13,8 @@ describe('Mute', () => {
let carol: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' });

View File

@ -13,6 +13,8 @@ describe('Note', () => {
let bob: any;
before(async () => {
this.timeout(0);
p = await startServer();
const connection = await initTestDb(true);
Notes = connection.getRepository(Note);

View File

@ -14,6 +14,8 @@ describe('Creating a block activity', () => {
let carol: any;
before(async () => {
this.timeout(0);
await initTestDb();
p = await startServer();
alice = await signup({ username: 'alice' });

View File

@ -38,6 +38,8 @@ describe('Streaming', () => {
let list: any;
before(async () => {
this.timeout(0);
p = await startServer();
const connection = await initTestDb(true);
Followings = connection.getRepository(Following);

View File

@ -12,6 +12,8 @@ describe('Note thread mute', () => {
let carol: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' });

View File

@ -13,6 +13,8 @@ describe('users/notes', () => {
let jpgPngNote: any;
before(async () => {
this.timeout(0);
p = await startServer();
alice = await signup({ username: 'alice' });
const jpg = await uploadUrl(alice, 'https://raw.githubusercontent.com/misskey-dev/misskey/develop/packages/backend/test/resources/Lenna.jpg');