FredericHeem/starhackit

View on GitHub
server/src/plugins/docker/testDocker.js

Summary

Maintainability
A
0 mins
Test Coverage
const assert = require("assert");
const testMngr = require("test/testManager");

describe("Docker", function () {
  before(async function () {
    if (!testMngr.app.config.infra.docker) {
      this.skip();
    }
  });
  after(async () => {});
  it("pull", async () => {
    assert(true);
  });
});