fix: api-client e2e test

This commit is contained in:
Rainer Killinger
2025-06-24 17:38:55 +02:00
parent 52ad5c081f
commit edf7384698

View File

@@ -159,10 +159,14 @@ describe('e2e Connector', function () {
failOnLookup = false;
failOnCompare = true;
await e2eRun(httpClient, {
e2eRun(httpClient, {
to: 'http://localhost',
samplesLocation: './node_modules/@openstapps/core/test/resources',
}).should.eventually.include('Unexpected difference between original and retrieved sample');
}).should.eventually.satisfy((errors: string[]) => {
return errors.every(error => {
return error.startsWith('Unexpected difference between original and retrieved sample');
});
});
});
it('should fail to index', async function () {