JS: Add test

This commit is contained in:
Asger F
2019-06-25 14:15:06 +01:00
parent 71100bb68a
commit aa4d28028e
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
async function test() {
let promisedTaint = source();
(await promisedTaint).map(x => {
sink(x); // NOT OK
});
}