We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e8de0 commit cee09f7Copy full SHA for cee09f7
test/keyboard.js
@@ -10,6 +10,10 @@ describe("Keyboard", () => {
10
expect(() => libnut.keyTap()).toThrowError(/A string was expected/);
11
});
12
13
+ it("Tap a key with modifier array.", function() {
14
+ expect(() => libnut.keyTap("a", ["alt", "control"])).not.toThrow();
15
+ });
16
+
17
// This it won't fail if there's an issue, but it will help you identify an issue if ran locally.
18
it("Tap all keys.", function() {
19
const chars = "abcdefghijklmnopqrstuvwxyz1234567890,./;'[]\\".split("");
0 commit comments