Skip to content

Commit a9c5d4e

Browse files
committed
Merge branch 'main' of https://github.com/slackapi/node-slack-sdk into feat-work-objects
2 parents 6d2ebc4 + a2ef748 commit a9c5d4e

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

packages/cli-test/src/cli/shell.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('shell module', () => {
1212
let spawnSpy: sinon.SinonStub;
1313
let spawnProcess: child.ChildProcessWithoutNullStreams;
1414
let runSpy: sinon.SinonStub;
15-
let runOutput: child.SpawnSyncReturns<Buffer>;
15+
let runOutput: child.SpawnSyncReturns<Buffer<ArrayBuffer>>;
1616

1717
beforeEach(() => {
1818
spawnProcess = mockProcess();

packages/cli-test/src/cli/shell.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ export const shell = {
105105
*/
106106
checkIfFinished: async function checkIfFinished(proc: ShellProcess): Promise<void> {
107107
return new Promise((resolve, reject) => {
108-
// biome-ignore lint/style/useConst: closing over timeout variable
109108
let timeout: NodeJS.Timeout;
110109

111110
const killIt = (reason: string) => {

0 commit comments

Comments
 (0)