fix(deps): update Docker API usage to DockerHost facade, bump dependencies, and adjust tests/docs

This commit is contained in:
2026-02-04 11:36:05 +00:00
parent 6117b20cc5
commit 31dc8eee22
11 changed files with 933 additions and 968 deletions

View File

@@ -3,10 +3,15 @@ import * as spark from '../ts/index.ts';
let testSpark: spark.Spark;
Deno.test('should create a spark instance', () => {
testSpark = new spark.Spark();
assert(testSpark instanceof spark.Spark);
assertExists(testSpark);
Deno.test({
name: 'should create a spark instance',
fn: () => {
testSpark = new spark.Spark();
assert(testSpark instanceof spark.Spark);
assertExists(testSpark);
},
sanitizeResources: false,
sanitizeOps: false,
});
Deno.test('should have spark info', () => {