sanger/limber

View on GitHub
app/frontend/javascript/test_support/factories/defaults.js

Summary

Maintainability
A
0 mins
Test Coverage
export default {
  comment: {
    attributes: {
      title: 'Comment Title',
      description: 'This is a comment',
    },
  },
  commentWithUser: {
    resource: 'comment',
    attributes: {},
  },
  custom_user: {
    resource: 'user',
    attributes: {
      login: 'js',
      first_name: 'Jane',
      last_name: 'Smith',
    },
  },
  plate: {
    attributes: {
      number_of_columns: 12,
      number_of_rows: 8,
    },
  },
}