Prepare new Debian package
[conkeror.git] / tests / simple / interactive.js
blob57aa5bdae532bf451fd7fcf9b4837d862410efe5
2 require('walnut.js');
4 walnut_run({
5     test_call_interactively_1: function () {
6         let a = 0;
7         interactive('test1', null, function () { a = 1; });
8         co_call(call_interactively({}, 'test1'));
9         assert_equals(a, 1);
10     }
11 });