123456789101112131415161718192021222324 |
- "use strict";
- const isLocalPath = require("./is-local-path");
- const path = require("path");
- describe("is-local-path", () => {
- it("returns true for paths beginning in the current directory", () => {
- const p = path.resolve(".", "test", "dir");
- expect(isLocalPath(p)).toBe(true);
- });
- it("returns true for absolute paths", () => {
- const p = path.join("/", "test", "dir");
- expect(isLocalPath(p)).toBe(true);
- });
- it("returns false for npm packages names", () => {
- expect(isLocalPath("webpack-addons-ylvis")).toBe(false);
- });
- it("returns false for scoped npm package names", () => {
- expect(isLocalPath("@webpack/test")).toBe(false);
- });
- });
|