Skip to content

Commit

Permalink
fix: add first cli test
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Ferreiro Val committed Jun 13, 2019
1 parent b3f0b42 commit 8df8d23
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/@best/cli/src/cli/__tests__/args.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { buildArgs } from "../index";

describe("cli options", () => {
test("test default path args", () => {
const result = buildArgs(["path"]);
expect(result._).toStrictEqual(["path"]);
});
});

0 comments on commit 8df8d23

Please sign in to comment.