Skip to content

Commit

Permalink
Also test .isFocused and .isMounted;
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornbytes committed Oct 2, 2024
1 parent c55ab63 commit b9d0d84
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/lovr/headset.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,12 @@ group('headset', function()
test('isVisible', function()
expect(lovr.headset.isVisible()).to.be.a('boolean')
end)

test('isFocused', function()
expect(lovr.headset.isFocused()).to.be.a('boolean')
end)

test('isMounted', function()
expect(lovr.headset.isMounted()).to.be.a('boolean')
end)
end)

0 comments on commit b9d0d84

Please sign in to comment.