Skip to content

Commit bae5b0d

Browse files
committed
fix: comment back out ava failure
1 parent 7ea160e commit bae5b0d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/eventual-send/test/test-ses-ava-reject-deep-stacks.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { wrapTest } from '@agoric/ses-ava';
22
import '@agoric/install-ses';
33
import rawTest from 'ava';
4-
import { E } from './get-hp';
4+
// import { E } from './get-hp';
55

66
// This file is a variation of the `test-ses-ava-reject` from the
77
// `@agoric/ses-ava` package. The difference is that this test
@@ -11,16 +11,21 @@ const test = wrapTest(rawTest);
1111

1212
test('ses-ava reject console output', t => {
1313
t.assert(true);
14+
// Uncomment this to see something like the text in the extended comment below
15+
16+
/*
1417
return E.when(Promise.resolve(null), v1 =>
1518
E.when(v1, v2 =>
1619
E.when(v2, _ => {
1720
assert.typeof(88, 'string', assert.details`msg ${'NOTICE ME'}`);
1821
}),
1922
),
2023
);
24+
*/
2125
});
2226

2327
/*
28+
Uncommenting the test code above should produce something like the following.
2429
Some of this output still comes from ava. The stack-like display comes from
2530
the SES `console`, which shows the detailed error message including the
2631
redacted `'NOTICE ME'` that ava has no access to.

0 commit comments

Comments
 (0)