/** * AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts **/import { globalTestConfig } from '../../framework/test_config.js';import { version } from '../version.js'; import { TestCaseRecorder } from './test_case_recorder.js'; export class Logger { results = new Map(); constructor({ overrideDebugMode } = {}) { this.overriddenDebugMode = overrideDebugMode; } record(name) { const result = { status: 'running', timems: -1 }; this.results.set(name, result); return [ new TestCaseRecorder(result, this.overriddenDebugMode ?? globalTestConfig.enableDebugLogs), result]; } asJSON(space, predFunc) { return JSON.stringify( { version, defaultDevice: this.defaultDeviceDescription, results: Array.from( new Map( [...this.results].filter(([key, value]) => predFunc ? predFunc(key, value) : true) ) ) }, undefined, space ); } }