UNPKG

conan

Version:

Barbarically simple framework for building deployment systems.

18 lines (15 loc) 428 B
/* eslint-disable no-unused-vars */ import ConanSteps from "../../lib/components/conanSteps.js"; describe("ConanSteps(parent)", () => { it("should not throw an error", () => { (() => { const conan = {}; const steps = new ConanSteps(conan); }).should.not.throw(); }); it("should save parent to .parent", () => { const conan = {}; const steps = new ConanSteps(conan); steps.parent.should.eql(conan); }); });