1
1
import { readFile } from 'fs/promises'
2
2
import { join , resolve } from 'path'
3
3
import { platform , version as nodeVersion } from 'process'
4
- import { promisify } from 'util'
5
4
6
5
import { getPath as getBootstrapPath } from '@netlify/serverless-functions-api'
7
6
import merge from 'deepmerge'
8
- import glob from 'glob'
9
7
import { pathExists } from 'path-exists'
10
8
import semver from 'semver'
9
+ import { glob } from 'tinyglobby'
11
10
import { dir as getTmpDir } from 'tmp-promise'
12
11
import { afterEach , describe , expect , test , vi } from 'vitest'
13
12
@@ -18,8 +17,6 @@ import { invokeLambda, readAsBuffer } from './helpers/lambda.js'
18
17
import { zipFixture , unzipFiles , importFunctionFile , FIXTURES_ESM_DIR , FIXTURES_DIR } from './helpers/main.js'
19
18
import { testMany } from './helpers/test_many.js'
20
19
21
- const pGlob = promisify ( glob )
22
-
23
20
vi . mock ( '../src/utils/shell.js' , ( ) => ( { shellUtils : { runCommand : vi . fn ( ) } } ) )
24
21
25
22
describe . runIf ( semver . gte ( nodeVersion , '18.13.0' ) ) ( 'V2 functions API' , ( ) => {
@@ -132,7 +129,7 @@ describe.runIf(semver.gte(nodeVersion, '18.13.0'))('V2 functions API', () => {
132
129
133
130
const [ { name : archive , entryFilename, path } ] = files
134
131
135
- const untranspiledFiles = await pGlob ( `${ path } /**/*.ts` )
132
+ const untranspiledFiles = await glob ( `${ path } /**/*.ts` )
136
133
expect ( untranspiledFiles ) . toEqual ( [ ] )
137
134
138
135
const func = await importFunctionFile ( `${ tmpDir } /${ archive } /${ entryFilename } ` )
0 commit comments