Skip to content

Commit

Permalink
chore: eslint rule update with formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealAmazonKendra committed Jun 24, 2024
1 parent f676e58 commit 89c1a97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/archive.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ test('zipDirectory can take a directory and produce a zip from it', async () =>

// check that mode is preserved
const stat = await fs.stat(path.join(extractDir, 'executable.txt'));
// eslint-disable-next-line no-bitwise
const isExec =
// eslint-disable-next-line no-bitwise
stat.mode & constants.S_IXUSR ||
// eslint-disable-next-line no-bitwise
stat.mode & constants.S_IXGRP ||
// eslint-disable-next-line no-bitwise
stat.mode & constants.S_IXOTH;
expect(isExec).toBeTruthy();
} finally {
Expand Down

0 comments on commit 89c1a97

Please sign in to comment.