jeffy-g/rm-cstyle-cmts

View on GitHub
scripts/batch-rmc-test.js

Summary

Maintainability
A
0 mins
Test Coverage
/*!
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  Copyright (C) 2022 jeffy-g <hirotom1107@gmail.com>
  Released under the MIT license
  https://opensource.org/licenses/mit-license.php
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
// @ts-check
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//                                imports.
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
const grmc = require("../dist/cjs/gulp/");
const getArgs = require("./tiny/get-extra-args");
const { task } = require("./grmc-test-task");

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//                            constants, types
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// [batch-rmc-test:cjs]: 17.629s
/** @type {Parameters<typeof task>[1]} */
const taskArgs = getArgs();
task(grmc, taskArgs);