From d4ad5e1d2c9a9fb535b2dd4672e6ec6b4e3dd400 Mon Sep 17 00:00:00 2001 From: Beau Cameron Date: Fri, 13 Oct 2023 10:30:03 -0600 Subject: [PATCH] Update list-items.ts --- test/graph/list-items.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/graph/list-items.ts b/test/graph/list-items.ts index 50019a36e..9f134b60b 100644 --- a/test/graph/list-items.ts +++ b/test/graph/list-items.ts @@ -39,16 +39,6 @@ describe("List-Items", function () { if(list){ await list.items.add({Title: `Item ${getRandomString(4)}`} as any); await list.items.add({Title: `Item ${getRandomString(4)}`} as any); - // can't do until Graph Drives is done. - /* const documentSetCT = await site.contentTypes.getById("0x0120D520")(); - await list.contentTypes.add(documentSetCT); - // create item - const itemData = await list.items.select("Id").top(1)<{ Id: number }[]>(); - item = list.items.getById(itemData[0].Id?.toString()); - - // add document set version to item - item.documentSetVersions.add("Test"); - */ } });