admin-bro
Version:
Admin panel for apps written in node.js
34 lines (28 loc) • 1.02 kB
text/typescript
import { expect } from 'chai'
import factory from 'factory-girl'
import '../../../spec/record-json.factory'
import '../../../spec/action-json.factory'
import { RecordJSON, ActionJSON } from '../../../../interfaces'
import getBulkActionsFromRecords from './get-bulk-actions-from-records'
describe('getBulkActionsFromRecords', function () {
context('records with 2 bulk actions', function () {
let actions: Array<ActionJSON> = []
let records: Array<RecordJSON>
it('returns array of uniq bulk actions', async function () {
actions = [
await factory.build<ActionJSON>('ActionJSON', {
name: 'bulkAction1',
actionType: 'bulk',
}),
await factory.build<ActionJSON>('ActionJSON', {
name: 'bulkAction2',
actionType: 'bulk',
}),
]
records = await factory.buildMany<RecordJSON>('RecordJSON', 5, {
bulkActions: actions,
})
expect(getBulkActionsFromRecords(records)).to.deep.equal(actions)
})
})
})