Add expects to positive test cases

Signed-off-by: Tim Hansen <timbonicush@spotify.com>
This commit is contained in:
Tim Hansen
2025-02-07 15:18:35 -07:00
parent b088a541e0
commit 1d7a9277f4
@@ -583,7 +583,7 @@ describe('BackendInitializer', () => {
},
}),
);
await init.start();
await expect(init.start()).resolves.not.toThrow();
});
it('should permit startup errors if the default is set', async () => {
@@ -607,7 +607,7 @@ describe('BackendInitializer', () => {
},
}),
);
await init.start();
await expect(init.start()).resolves.not.toThrow();
});
it('should forward errors for plugins explicitly marked as not optional when the default is true', async () => {