Keys are used as a relative file path without any sanitization assuming that the underlying fs will throw on error.
64 lines
2 KiB
TypeScript
64 lines
2 KiB
TypeScript
/**
|
|
* Copyright Microsoft Corporation. All rights reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
import type { TestInfoImpl } from '../worker/testInfo';
|
|
import type { Suite } from './test';
|
|
import type { FullConfigInternal } from './types';
|
|
|
|
let currentTestInfoValue: TestInfoImpl | null = null;
|
|
export function setCurrentTestInfo(testInfo: TestInfoImpl | null) {
|
|
currentTestInfoValue = testInfo;
|
|
}
|
|
export function currentTestInfo(): TestInfoImpl | null {
|
|
return currentTestInfoValue;
|
|
}
|
|
|
|
let currentFileSuite: Suite | undefined;
|
|
export function setCurrentlyLoadingFileSuite(suite: Suite | undefined) {
|
|
currentFileSuite = suite;
|
|
}
|
|
export function currentlyLoadingFileSuite() {
|
|
return currentFileSuite;
|
|
}
|
|
|
|
export function currentExpectTimeout(options: { timeout?: number }) {
|
|
const testInfo = currentTestInfo();
|
|
if (options.timeout !== undefined)
|
|
return options.timeout;
|
|
let defaultExpectTimeout = testInfo?.project._internal.expect?.timeout;
|
|
if (typeof defaultExpectTimeout === 'undefined')
|
|
defaultExpectTimeout = 5000;
|
|
return defaultExpectTimeout;
|
|
}
|
|
|
|
let _isWorkerProcess = false;
|
|
|
|
export function setIsWorkerProcess() {
|
|
_isWorkerProcess = true;
|
|
}
|
|
|
|
export function isWorkerProcess() {
|
|
return _isWorkerProcess;
|
|
}
|
|
|
|
let currentConfigValue: FullConfigInternal | null = null;
|
|
export function setCurrentConfig(config: FullConfigInternal | null) {
|
|
currentConfigValue = config;
|
|
}
|
|
export function currentConfig(): FullConfigInternal | null {
|
|
return currentConfigValue;
|
|
}
|