fix(test): Increase test timeout, enable DockerImageStore test, update test image name, bump smartrequest patch, and add local claude settings

This commit is contained in:
2025-08-19 01:42:02 +00:00
parent 42df15a523
commit 6e313261e7
5 changed files with 24 additions and 16 deletions

View File

@@ -152,7 +152,7 @@ tap.test('should import images', async () => {
expect(importedImage).toBeInstanceOf(docker.DockerImage);
});
tap.skip.test('should expose a working DockerImageStore', async () => {
tap.test('should expose a working DockerImageStore', async () => {
// lets first add am s3 target
const s3Descriptor = {
endpoint: await testQenv.getEnvVarOnDemand('S3_ENDPOINT'),
@@ -163,7 +163,7 @@ tap.skip.test('should expose a working DockerImageStore', async () => {
await testDockerHost.addS3Storage(s3Descriptor);
//
await testDockerHost.imageStore.storeImage('hello', plugins.smartfile.fsStream.createReadStream(plugins.path.join(paths.nogitDir, 'testimage.tar')));
await testDockerHost.imageStore.storeImage('hello2', plugins.smartfile.fsStream.createReadStream(plugins.path.join(paths.nogitDir, 'testimage.tar')));
})
tap.test('cleanup', async () => {