adminjs
Version:
Admin panel for apps written in node.js
33 lines (28 loc) • 1.04 kB
text/typescript
import { expect } from 'chai'
import { factory } from 'factory-girl'
import '../../../spec/record-json.factory.js'
import '../../../spec/action-json.factory.js'
import { RecordJSON, ActionJSON } from '../../../../interfaces/index.js'
import getBulkActionsFromRecords from './get-bulk-actions-from-records.js'
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)
})
})
})