2018-01-28 22:34:45 +09:00
|
|
|
/* Copyright 2018 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-07-17 23:33:06 +09:00
|
|
|
import {
|
|
|
|
isNodeJS,
|
|
|
|
setVerbosityLevel,
|
|
|
|
VerbosityLevel,
|
|
|
|
} from "../../src/shared/util.js";
|
2018-01-28 22:34:45 +09:00
|
|
|
|
2021-01-12 23:21:19 +09:00
|
|
|
// Sets longer timeout, similar to `jasmine-boot.js`.
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
|
|
|
|
|
2018-01-28 22:34:45 +09:00
|
|
|
// Ensure that this script only runs in Node.js environments.
|
2019-11-11 00:42:46 +09:00
|
|
|
if (!isNodeJS) {
|
2018-01-28 22:34:45 +09:00
|
|
|
throw new Error(
|
2020-05-05 19:40:01 +09:00
|
|
|
"The `gulp unittestcli` command can only be used in Node.js environments."
|
2018-01-28 22:34:45 +09:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:56:46 +09:00
|
|
|
// Reduce the amount of console "spam", by ignoring `info`/`warn` calls,
|
|
|
|
// when running the unit-tests in Node.js/Travis.
|
|
|
|
setVerbosityLevel(VerbosityLevel.ERRORS);
|