File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- name : ' Release'
1
+ name : ' Release IDE to GitHub '
2
2
3
3
on :
4
4
push :
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " selenium-side-runner" ,
3
- "version" : " 4.0.0-alpha.50 " ,
3
+ "version" : " 4.0.0-alpha.51 " ,
4
4
"private" : false ,
5
5
"description" : " Run Selenium IDE projects in cli" ,
6
6
"repository" : " https://github.com/SeleniumHQ/selenium-ide" ,
Original file line number Diff line number Diff line change 17
17
18
18
import each from 'jest-each'
19
19
import fs from 'fs'
20
- import glob from 'glob'
20
+ import { globSync } from 'glob'
21
21
import { createLogger , format , transports } from 'winston'
22
22
import { Configuration , Project } from './types'
23
23
import buildRegister from './register'
@@ -71,7 +71,7 @@ const testTitle = 'Running test $name'
71
71
72
72
const allMatchingProjects : Project [ ] = [
73
73
...configuration . projects . reduce ( ( projects , project ) => {
74
- glob . sync ( project ) . forEach ( ( p ) => {
74
+ globSync ( project ) . forEach ( ( p ) => {
75
75
projects . add ( p )
76
76
} )
77
77
return projects
You can’t perform that action at this time.
0 commit comments