Skip to content

Commit 4d5e1dc

Browse files
fix: tests with new project features update api
1 parent b3d002d commit 4d5e1dc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@makeplane/plane-node-sdk",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Node SDK for Plane",
55
"author": "Plane <[email protected]>",
66
"repository": {

tests/e2e/project.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ describe("End to End Project Test", () => {
2727
name: projectName,
2828
id: projectName.slice(0, 5).toUpperCase(),
2929
});
30+
31+
await client.projects.updateFeatures(e2eConfig.workspaceSlug, project.id, {
32+
cycles: true,
33+
modules: true,
34+
});
3035
});
3136

3237
it("should create and list cycles", async () => {

0 commit comments

Comments
 (0)