mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 19:07:23 +00:00

PR-URL: https://github.com/nodejs/node/pull/42205 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
const LifecycleCmd = require('../lifecycle-cmd.js')
|
|
|
|
// This ends up calling run-script(['test', ...args])
|
|
class Test extends LifecycleCmd {
|
|
static description = 'Test a package'
|
|
static name = 'test'
|
|
static params = [
|
|
'ignore-scripts',
|
|
'script-shell',
|
|
]
|
|
|
|
static ignoreImplicitWorkspace = false
|
|
}
|
|
module.exports = Test
|