Skip to content

Commit 552800b

Browse files
committed
feat: fix test
1 parent 4fe5b66 commit 552800b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/operator/apl-operations.test.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,24 @@ jest.mock('../cmd/validate-values', () => ({
1818
},
1919
}))
2020

21+
jest.mock('../cmd/validate-cluster', () => ({
22+
module: {
23+
handler: jest.fn(),
24+
},
25+
}))
26+
2127
jest.mock('../cmd/apply', () => ({
2228
module: {
2329
handler: jest.fn(),
2430
},
2531
}))
2632

33+
jest.mock('../cmd/install', () => ({
34+
module: {
35+
handler: jest.fn(),
36+
},
37+
}))
38+
2739
jest.mock('../cmd/apply-as-apps', () => ({
2840
module: {
2941
handler: jest.fn(),

0 commit comments

Comments
 (0)