Compare commits

...

2 Commits

Author SHA1 Message Date
Rainer Killinger
d255385f5f refactor: update to node 22
refactor: remove deprecated "jetifier"
refactor: base migration to Angular v18
fix: angular warning
refactor: update capacitor to v6
refactor: update ngx-markdown to v18
refactor: update to ionic v8
refactor: remove deprecated @ionic-native/core (replaced by @awesome-cordova-plugins/core)
fix: build
fix: test
feat: temporarily use external node image in ci
feat: update to node 22
refactor: rebase
fix: prettier depencencies
ci: update android commandline tools
fix: prettier package type
ci: let pnpm handle build dependencies
refactor: revert to pnpm 8, angular 17
2025-06-24 18:09:17 +02:00
Rainer Killinger
6bb44668fd fix: api-client e2e test 2025-06-24 17:43:59 +02:00

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 () {