Make test async

This commit is contained in:
Rick Waldron 2020-09-25 13:40:48 -04:00
parent 3f2a2aa464
commit 4853f6d363
1 changed files with 8 additions and 1 deletions

View File

@ -5,9 +5,16 @@
desc: Computed property name from condition expression
template: evaluation
features: [computed-property-names, top-level-await]
flags: [module]
flags: [async, module]
---*/
//- setup
try {
//- ComputedPropertyName
await 9
//- value
9
//- teardown
} catch (e) {
$DONE(e);
}
$DONE();