File tree Expand file tree Collapse file tree 2 files changed +16
-19
lines changed
Expand file tree Collapse file tree 2 files changed +16
-19
lines changed Original file line number Diff line number Diff line change 1414 "license" : " Apache 2.0" ,
1515 "description" : " Automatically cleanup unused images based on various cache replacement algorithms" ,
1616 "dependencies" : {
17- "@types/dockerode" : " ^3.3.24 " ,
17+ "@types/dockerode" : " ^3.3.44 " ,
1818 "@types/event-stream" : " ^4.0.5" ,
1919 "@types/JSONStream" : " npm:@types/jsonstream@^0.8.33" ,
20- "@types/node" : " ^16.18.103 " ,
21- "docker-progress" : " ^5.2.3 " ,
22- "dockerode" : " ^4.0.2 " ,
20+ "@types/node" : " ^16.18.126 " ,
21+ "docker-progress" : " ^5.3.1 " ,
22+ "dockerode" : " ^4.0.9 " ,
2323 "event-stream" : " ^4.0.1" ,
2424 "eventemitter3" : " ^5.0.1" ,
2525 "JSONStream" : " ^1.3.5"
2626 },
2727 "devDependencies" : {
28- "@balena/lint" : " ^9.1.4 " ,
29- "@types/chai" : " ^4.3.16 " ,
30- "@types/mocha" : " ^10.0.7 " ,
31- "chai" : " ^4.4.1 " ,
32- "mocha" : " ^11.0.0 " ,
28+ "@balena/lint" : " ^9.3.8 " ,
29+ "@types/chai" : " ^4.3.20 " ,
30+ "@types/mocha" : " ^10.0.10 " ,
31+ "chai" : " ^4.5.0 " ,
32+ "mocha" : " ^11.7.4 " ,
3333 "timekeeper" : " ^2.3.1" ,
3434 "ts-node" : " ^10.9.2" ,
35- "typescript" : " ^5.5 .3"
35+ "typescript" : " ^5.9 .3"
3636 },
3737 "versionist" : {
3838 "publishedAt" : " 2025-04-02T14:03:44.780Z"
Original file line number Diff line number Diff line change @@ -41,15 +41,12 @@ describe('Garbage collection', function () {
4141 beforeEach ( async function ( ) {
4242 dockerStorage = new DockerGC ( ) ;
4343 // Use either local or CI docker
44- const [ $docker ] = await Promise . all ( [
45- getDocker ( {
46- socketPath : '/tmp/dind/docker.sock' ,
47- } ) ,
48- dockerStorage . setDocker ( {
49- socketPath : '/tmp/dind/docker.sock' ,
50- } ) ,
51- ] ) ;
52- docker = $docker ;
44+ docker = getDocker ( {
45+ socketPath : '/tmp/dind/docker.sock' ,
46+ } ) ;
47+ await dockerStorage . setDocker ( {
48+ socketPath : '/tmp/dind/docker.sock' ,
49+ } ) ;
5350 await dockerStorage . setupMtimeStream ( ) ;
5451 } ) ;
5552
You can’t perform that action at this time.
0 commit comments