Skip to content

Commit

Permalink
[INTERNAL] Add async / await test case
Browse files Browse the repository at this point in the history
  • Loading branch information
matz3 committed Jan 9, 2019
1 parent a094591 commit 0c23b38
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/fixtures/lbt/modules/es6-syntax.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,9 @@ sap.ui.define([
sap.ui.require(['conditional/module3'], function(){});
});

});
// async / await
const myFunction = async function() {
await Promise.resolve();
};

});

0 comments on commit 0c23b38

Please sign in to comment.