1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
import { getWorkspace } from "../src/getWorkspace";
import { spyConsole, validateLogs } from "@turbo/test-utils";
describe("getWorkspace()", () => {
const mockConsole = spyConsole();
it("getWorkspace returns workspace from arg", async () => {
expect(
getWorkspace({
workspace: "test-workspace",
})
).toEqual("test-workspace");
validateLogs(
['Using "test-workspace" as workspace from arguments'],
mockConsole.log,
{ prefix: "≫ " }
);
});
it("getWorkspace returns workspace from package.json", async () => {
expect(
getWorkspace({
directory: "./__fixtures__/app",
})
).toEqual("test-app");
expect(mockConsole.log).toHaveBeenCalledWith(
"≫ ",
'Inferred "test-app" as workspace from "package.json"'
);
});
it("getWorkspace used current directory if not specified", async () => {
expect(getWorkspace({})).toEqual("turbo-ignore");
expect(mockConsole.log).toHaveBeenCalledWith(
"≫ ",
'Inferred "turbo-ignore" as workspace from "package.json"'
);
});
it("getWorkspace returns null when no arg is provided and package.json is missing name field", async () => {
expect(
getWorkspace({
directory: "./__fixtures__/invalid-app",
})
).toEqual(null);
expect(mockConsole.error).toHaveBeenCalledWith(
"≫ ",
'"__fixtures__/invalid-app/package.json" is missing the "name" field (required).'
);
});
it("getWorkspace returns null when no arg is provided and package.json can be found", async () => {
expect(
getWorkspace({
directory: "./__fixtures__/no-app",
})
).toEqual(null);
expect(mockConsole.error).toHaveBeenCalledWith(
"≫ ",
'"__fixtures__/no-app/package.json" could not be found. turbo-ignore inferencing failed'
);
});
});
|