mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
17 lines
492 B
TypeScript
17 lines
492 B
TypeScript
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
import { test, assert, assertEqual } from "./test_util.ts";
|
|
|
|
// This test demonstrates a bug:
|
|
// https://github.com/denoland/deno/issues/808
|
|
test(function evalErrorFormatted() {
|
|
let err;
|
|
try {
|
|
eval("boom");
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(!!err);
|
|
// tslint:disable-next-line:no-unused-expression
|
|
err.stack; // This would crash if err.stack is malformed
|
|
assertEqual(err.name, "ReferenceError");
|
|
});
|