Sha256: cebd6eecc78530b0d42afbad31ab747fba48fc34eb6baf077f4dc36a74b041ba

Contents?: true

Size: 1.61 KB

Versions: 1048

Compression:

Stored size: 1.61 KB

Contents

import { ensureAccessible, renderKit } from '../utilities/test-utils'

import Background from './_background'

const props = {
  data: { testid: 'background' },
  backgroundColor: null,
}

it('Should be accessible', async () => {
  ensureAccessible(Background, props)
})

test('backgroundColor = success', () => {
  const kit = renderKit(Background, props, { backgroundColor: 'success' })
  expect(kit).toHaveClass('pb_background_kit pb_background_color_success')
})

test('backgroundColor = category_1', () => {
  const kit = renderKit(Background, props, { backgroundColor: 'category_1' })
  expect(kit).toHaveClass('pb_background_kit pb_background_color_category_1')
})

test('customColor prop styles background color with a hex value', () => {
  const kit = renderKit(Background, props, { customColor: '#1d99a8' })

  expect(kit).toHaveClass('pb_background_kit pb_background_custom_color')
  expect(kit).toHaveStyle(`background-color: #1d99a8;`)
})

test('backgroundRepeat = repeat', () => {
  const kit = renderKit(Background, props, { classname: "background-image", imageUrl: "https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80", backgroundRepeat: 'repeat' })
  expect(kit).toHaveStyle('background-repeat: repeat')
})

test('backgroundSize = auto', () => {
  const kit = renderKit(Background, props, { classname: "background-image", imageUrl: "https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80", backgroundSize: 'auto' })
  expect(kit).toHaveStyle('background-size: auto')
})

Version data entries

1,048 entries across 1,048 versions & 1 rubygems

Version Path
playbook_ui-11.20.0.pre.alpha.focus1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.20.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.19.0.pre.alpha.map1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.19.0.pre.alpha.pagpassthrough1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.19.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.18.0.pre.alpha.pagutility1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.19.0.pre.typeahead1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.18.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.17.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.15.0.pre.alpha.dependencies1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.16.0.pre.alpha.paginationrails1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.16.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.16.0.pre.alpha.reactupgrade1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.15.0.pre.alpha.table1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.16.0.pre.alpha.pagination.rails1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.15.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.14.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.13.0.pre.alpha.fontawesome1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.13.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.12.1.pre.alpha.charts1 app/pb_kits/playbook/pb_background/background.test.js