diff --git a/test/unit/blocks_sensing.js b/test/unit/blocks_sensing.js index e791d38d5..cf607d3b9 100644 --- a/test/unit/blocks_sensing.js +++ b/test/unit/blocks_sensing.js @@ -143,3 +143,11 @@ test('loud? boolean', t => { t.end(); }); + +test('username block', t => { + const rt = new Runtime(); + const sensing = new Sensing(rt); + + t.equal(sensing.getUsername(), ''); + t.end(); +});