Gotta get that unit test coverage up :)

This commit is contained in:
Paul Kaplan 2018-05-23 11:33:33 -04:00
parent c5cc129821
commit 91e97ebdda

View file

@ -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();
});