aboutsummaryrefslogtreecommitdiff
path: root/test/js/web/timers/setTimeout-unref-fixture-2.js
blob: 6a78f13cd68957eff99f05b2f88946967ff48b7c (plain) (blame)
1
2
3
4
5
6
7
8
9
setTimeout(() => {
  console.log("TEST FAILED!");
}, 100)
  .ref()
  .unref();

setTimeout(() => {
  // this one should always run
}, 1);