Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanjassal committed Oct 29, 2024
1 parent 0086cb5 commit 124f780
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/secrets/create.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,14 @@ describe('commandCreateSecret', () => {
await polykeyAgent.vaultManager.createVault(vaultName);
const secretName = path.join(dataDir, 'secret');
await fs.promises.writeFile(secretName, secretName);
const command = ['secrets', 'create', '-np', dataDir, secretName, vaultName];
const command = [
'secrets',
'create',
'-np',
dataDir,
secretName,
vaultName,
];
const result = await testUtils.pkStdio(command, {
env: { PK_PASSWORD: password },
cwd: dataDir,
Expand Down

0 comments on commit 124f780

Please sign in to comment.