nexxtway/react-rainbow

View on GitHub
integration/helpers/releaseKey.js

Summary

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

module.exports = releaseKey;