Changeset 212444 in webkit


Ignore:
Timestamp:
Feb 16, 2017 10:20:25 AM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, fix r212438 test
https://bugs.webkit.org/show_bug.cgi?id=167457

  • inspector/controller/runtime-controller-import.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r212440 r212444  
     12017-02-16  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, fix r212438 test
     4        https://bugs.webkit.org/show_bug.cgi?id=167457
     5
     6        * inspector/controller/runtime-controller-import.html:
     7
    182017-02-16  Javier Fernandez  <jfernandez@igalia.com>
    29
  • trunk/LayoutTests/inspector/controller/runtime-controller-import.html

    r212438 r212444  
    3131            })
    3232            .then(() => {
    33                 testSource("await import('./resources/cocoa.js').then((cocoa) => { console.log(`${cocoa.name} is ${cocoa.taste}.`); })");
     33                return testSource("await import('./resources/cocoa.js').then((cocoa) => { console.log(`${cocoa.name} is ${cocoa.taste}.`); })");
    3434            })
    3535            .then(() => {
    36                 testSource("await import('./resources/drink.js').then((ns) => { console.log(`${ns.Cocoa.name} is ${ns.Cocoa.taste}. ${ns.Cappuccino.name} is ${ns.Cappuccino.taste}.`); })");
     36                return testSource("await import('./resources/drink.js').then((ns) => { console.log(`${ns.Cocoa.name} is ${ns.Cocoa.taste}. ${ns.Cappuccino.name} is ${ns.Cappuccino.taste}.`); })");
    3737            })
    3838            .then(resolve);
Note: See TracChangeset for help on using the changeset viewer.