Skip to content

Commit

Permalink
TINY-11177: Upgrade lambdatest and AWS library dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpyder committed Jan 24, 2025
1 parent 902eab3 commit e4681f3
Show file tree
Hide file tree
Showing 2 changed files with 830 additions and 749 deletions.
4 changes: 2 additions & 2 deletions modules/runner/src/main/ts/core/Utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Suite, Test } from '@ephox/bedrock-common';
import sourceMappedStackTrace from 'sourcemapped-stacktrace';
import * as SourceMappedStackTrace from 'sourcemapped-stacktrace';

// eslint-disable-next-line @typescript-eslint/no-empty-function
export const noop = (): void => {};
Expand Down Expand Up @@ -46,7 +46,7 @@ export const mapStackTrace = (stack: string | undefined): Promise<string> => new
// If the stack trace format can't be found then an Error will be thrown.
// In that case lets just return the original stack instead.
try {
sourceMappedStackTrace.mapStackTrace(stack, (stack: string[]) => resolve(stack.join('\n')));
SourceMappedStackTrace.mapStackTrace(stack, (stack: string[]) => resolve(stack.join('\n')));
} catch (e) {
resolve(stack);
}
Expand Down
Loading

0 comments on commit e4681f3

Please sign in to comment.