mirror of https://github.com/grpc/grpc-node.git
Fix bad return when skipping tests
This commit is contained in:
parent
42d9658283
commit
39f5e89ee1
|
@ -36,7 +36,7 @@ const test = () => {
|
|||
// returning the associated gulp stream
|
||||
if (!semver.satisfies(process.version, '>=9.4')) {
|
||||
console.log(`Skipping cross-implementation tests for Node ${process.version}`);
|
||||
return;
|
||||
return Promise.resolve();
|
||||
}
|
||||
const apiTestGlob = `${apiTestDir}/*.js`;
|
||||
const runTestsWithFixture = (server, client) => new Promise((resolve, reject) => {
|
||||
|
|
Loading…
Reference in New Issue