Sha256: cebd6eecc78530b0d42afbad31ab747fba48fc34eb6baf077f4dc36a74b041ba

Contents?: true

Size: 1.61 KB

Versions: 922

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

922 entries across 922 versions & 1 rubygems

Version Path
playbook_ui-11.11.0.pre.alpha.paginate1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.11.0.pre.alpha.renderer1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.11.0.pre.alpha.dialog1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.11.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.10.0.pre.alpha.pre.bold1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.10.0.pre.alpha.pagination1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.10.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.9.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.9.0.pre.alpha.fileupload1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.8.1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.8.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.7.0.pre.alpha.table1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.7.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.6.0.pre.alpha.fontawesome app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.5.0.pre.alpha.fontawesome app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.7.0.pre.alpha.pre.guagechart1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.6.0 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.5.0.pre.alpha.datepicker1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.6.0.pre.alpha.rubocopperf1 app/pb_kits/playbook/pb_background/background.test.js
playbook_ui-11.6.1.pre.alpha.rubocop.pre.performance1 app/pb_kits/playbook/pb_background/background.test.js