Skip to content

Commit

Permalink
fix(pwt): skip .last-run.json file 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Sep 11, 2024
1 parent 4b2d49e commit f43505a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker-javascript/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ func handler(w *worker.Worker, code string) error {
func main() {
worker.NewWorker(&worker.WorkerExectionOptions{
Handler: handler,
IgnoreFilePatterns: []string{"**/*.last-run.json"},
IgnoreFilePatterns: []string{"*.last-run.json"},
}).Run()
}

0 comments on commit f43505a

Please sign in to comment.