Skip to content

Commit

Permalink
TypeError: files is not iterable (#147)
Browse files Browse the repository at this point in the history
Co-authored-by: mkrishn5 <manju.krishnappa@macquarie.com>
  • Loading branch information
manjumaikan and mkrishn5 authored Sep 15, 2023
1 parent 94b09c4 commit a341472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async (logger, args) => {
const io = new Server(http)

app.get('/', async (req, res) => {
const files = getFiles(logger, args)
const files = await getFiles(logger, args)
const suites = await getSuites(logger, files)
const description = getDescription(suites)

Expand Down

0 comments on commit a341472

Please sign in to comment.