Skip to content

Commit 4703c1c

Browse files
committed
restore functionality to the side runner
1 parent e71ba5e commit 4703c1c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release-ide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Release'
1+
name: 'Release IDE to GitHub'
22

33
on:
44
push:

packages/side-runner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-side-runner",
3-
"version": "4.0.0-alpha.50",
3+
"version": "4.0.0-alpha.51",
44
"private": false,
55
"description": "Run Selenium IDE projects in cli",
66
"repository": "https://github.com/SeleniumHQ/selenium-ide",

packages/side-runner/src/main.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import each from 'jest-each'
1919
import fs from 'fs'
20-
import glob from 'glob'
20+
import { globSync } from 'glob'
2121
import { createLogger, format, transports } from 'winston'
2222
import { Configuration, Project } from './types'
2323
import buildRegister from './register'
@@ -71,7 +71,7 @@ const testTitle = 'Running test $name'
7171

7272
const allMatchingProjects: Project[] = [
7373
...configuration.projects.reduce((projects, project) => {
74-
glob.sync(project).forEach((p) => {
74+
globSync(project).forEach((p) => {
7575
projects.add(p)
7676
})
7777
return projects

0 commit comments

Comments
 (0)