mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 22:54:29 +01:00
fba17d77de
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding
23 lines
774 B
JavaScript
23 lines
774 B
JavaScript
import React from 'react'
|
|
import assert from 'assert'
|
|
import { shallow } from 'enzyme'
|
|
import Breadcrumbs from '../breadcrumbs.component'
|
|
|
|
describe('Breadcrumbs Component', () => {
|
|
it('should render with the correct colors', () => {
|
|
const wrapper = shallow(
|
|
<Breadcrumbs
|
|
currentIndex={1}
|
|
total={3}
|
|
/>
|
|
)
|
|
|
|
assert.ok(wrapper)
|
|
assert.equal(wrapper.find('.breadcrumbs').length, 1)
|
|
assert.equal(wrapper.find('.breadcrumb').length, 3)
|
|
assert.equal(wrapper.find('.breadcrumb').at(0).props().style['backgroundColor'], '#FFFFFF')
|
|
assert.equal(wrapper.find('.breadcrumb').at(1).props().style['backgroundColor'], '#D8D8D8')
|
|
assert.equal(wrapper.find('.breadcrumb').at(2).props().style['backgroundColor'], '#FFFFFF')
|
|
})
|
|
})
|