mirror of
https://github.com/strapi/strapi.git
synced 2026-01-01 01:33:50 +00:00
8 lines
274 B
JavaScript
8 lines
274 B
JavaScript
'use strict';
|
|
|
|
// Thin wrapper that calls the unified test runner with type=cli
|
|
// Inject --type cli before the rest of the arguments
|
|
const args = process.argv.slice(2);
|
|
process.argv = [process.argv[0], process.argv[1], '--type', 'cli', ...args];
|
|
require('./run-tests.js');
|