react-native-contrib/rsx

View on GitHub
tests/fixtures/commands.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

exports.single = {
  func: () => {},
  description: 'Test action',
  name: 'test',
};

exports.multiple = [{
  func: () => {},
  description: 'Test action #1',
  name: 'test1',
}, {
  func: () => {},
  description: 'Test action #2',
  name: 'test2',
}];