UNPKG

testplane

Version:

Tests framework based on mocha and wdio

5 lines (4 loc) 390 B
import { type BasicSourceMapConsumer } from "source-map"; import type { SufficientStackFrame, ResolvedFrame } from "./types"; export declare const extractSourceMaps: (fileContents: string, fileName: string) => Promise<BasicSourceMapConsumer | null>; export declare const resolveLocationWithSourceMap: (stackFrame: SufficientStackFrame, sourceMaps: BasicSourceMapConsumer) => ResolvedFrame;