Skip to content

Commit

Permalink
chore: git not working on folder change
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth9890 committed Nov 20, 2023
1 parent 191cdd7 commit 3cdeea4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
File renamed without changes.
18 changes: 5 additions & 13 deletions test/pda.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,15 @@ describe('PDA TESTING', () => {
},
};
const { createPDA } = await api.pda.createPDA(obj);
expect(createPDA.dataAsset?.title).toEqual('test');
const { changePDAStatus } = await api.pda.changePDAStatus({
id: createPDA.id,
status: PDAStatus.Suspended,
});
expect(changePDAStatus.status).toEqual(PDAStatus.Suspended);
},
DEFAULT_TIMEOUT,
);

// it(
// 'change pda status',
// async () => {
// const { changePDAStatus } = await api.pda.changePDAStatus({
// id: '6bc1a11f-f91d-4361-9a22-5df8d1bf4dc8',
// status: PDAStatus.Valid,
// });
// expect(changePDAStatus.status).toEqual(PDAStatus.Valid);
// },
// DEFAULT_TIMEOUT,
// );

it(
'get single pda',
async () => {
Expand Down

0 comments on commit 3cdeea4

Please sign in to comment.