Skip to content

Commit

Permalink
style: fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Lenin Mehedy <[email protected]>
  • Loading branch information
leninmehedy committed Nov 16, 2023
1 parent 5c816e2 commit 7a1e08b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions fullstack-network-manager/src/commands/chart.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import chalk from "chalk";
import chalk from 'chalk'
import { BaseCommand } from './base.mjs'
import * as flags from './flags.mjs'
import { constants } from '../core/index.mjs'
Expand Down Expand Up @@ -49,10 +49,9 @@ export class ChartCommand extends BaseCommand {
await this.kubectl.wait('pod',
'--for=jsonpath=\'{.status.phase}\'=Running',
'-l fullstack.hedera.com/type=network-node',
`--timeout=900s`,
'--timeout=900s'
)
this.logger.showUser(chalk.green('OK'), `network-nodes are running`)

this.logger.showUser(chalk.green('OK'), 'network-nodes are running')

return true
} catch (e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ describe('PackageDownloaderE2E', () => {
testLogger.showUser(destPath)

// remove the downloaded files to reduce disk usage
fs.rmSync(`${tmpDir}`, {recursive: true})
fs.rmSync(`${tmpDir}`, { recursive: true })
}, 100000)
})
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('PackageDownloader', () => {
expect(fs.existsSync(destPath)).toBeTruthy()

// remove the file to reduce disk usage
fs.rmSync(tmpDir, {recursive: true})
fs.rmSync(tmpDir, { recursive: true })
} catch (e) {
expect(e).toBeNull()
}
Expand Down

0 comments on commit 7a1e08b

Please sign in to comment.