refactor: Enable stricter test linting

This commit is contained in:
Joachim Van Herwegen
2023-10-27 15:53:52 +02:00
parent 6248ed0938
commit 7a007dc466
48 changed files with 179 additions and 155 deletions

View File

@@ -232,7 +232,7 @@ describe.each(stores)('An LDP handler with auth using %s', (name, { storeConfig,
// GET file
const response = await getResource(identifier.path);
expect(await response.text()).toContain('valid data');
await expect(response.text()).resolves.toContain('valid data');
});
it('prevents creation of intermediate intermediate containers if they are not allowed.', async(): Promise<void> => {