Bamieh/reflow

View on GitHub
examples/example-native-project/actions/alerts/accept.js

Summary

Maintainability
A
0 mins
Test Coverage
const accept = function accept({driver}) {

  return function() { driver.execute('mobile: alert', {
    'action': 'accept',
    // 'buttonLabel': 'My Cool Alert Button',
  });
}
}
module.exports = accept