mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
25 lines
766 B
TypeScript
25 lines
766 B
TypeScript
import { popperOptionsReenablePreventOverflow } from './popper-options'
|
|
import { Options } from '@popperjs/core'
|
|
|
|
describe('popperOptionsReenablePreventOverflow', () => {
|
|
it('should return the config without the empty fun preventOverflow, add padding to other', () => {
|
|
const config: Partial<Options> = {
|
|
modifiers: [
|
|
{ name: 'preventOverflow', fn: function () {} },
|
|
{
|
|
name: 'preventOverflow',
|
|
fn: function (arg0) {
|
|
return
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
const result = popperOptionsReenablePreventOverflow(config)
|
|
|
|
expect(result.modifiers.length).toBe(1)
|
|
expect(result.modifiers[0].name).toBe('preventOverflow')
|
|
expect(result.modifiers[0].options).toEqual({ padding: 10 })
|
|
})
|
|
})
|