nexxtway/react-rainbow

View on GitHub
integration/helpers/holdDownKey.js

Summary

Maintainability
A
55 mins
Test Coverage
async function holdDownKey(character) {
    await browser.performActions([
        {
            type: 'key',
            id: 'keyboard',
            actions: [{ type: 'keyDown', value: character }],
        },
    ]);
}

module.exports = holdDownKey;