fix(deps): update Docker API usage to DockerHost facade, bump dependencies, and adjust tests/docs
This commit is contained in:
13
test/test.ts
13
test/test.ts
@@ -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', () => {
|
||||
|
||||
Reference in New Issue
Block a user