Skip to content

Commit

Permalink
fix: removed redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanjassal committed Oct 4, 2024
1 parent 75587d3 commit f672cd4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/vaults/VaultOps.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@ describe('VaultOps', () => {
describe('mkdir', () => {
test('can create directory', async () => {
const response = vaultOps.mkdir(vault, [dirName]);
// For await (const _ of response);
for await (const data of response) {
expect(data.success).toBeTruthy();
expect(data.error).toBeUndefined();
Expand All @@ -336,7 +335,6 @@ describe('VaultOps', () => {
const response = vaultOps.mkdir(vault, [dirPath], {
recursive: true,
});
// For await (const _ of response);
for await (const data of response) {
expect(data.success).toBeTruthy();
expect(data.error).toBeUndefined();
Expand Down

0 comments on commit f672cd4

Please sign in to comment.