-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow tests files in /src (plus Label component tests) (#10634)
* allow tests in jest confg * sample stories for Label component * passing tests * stories to tsx! * excluding knobs exports from published stories * ts fix * ts fix * Label test to TS * explicitly ignoring test files in webpack bundling * linting stuff * adding comment about test file exclusions
- Loading branch information
Showing
4 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/* global jest */ | ||
import React from 'react'; | ||
/* eslint-disable-next-line import/no-extraneous-dependencies */ | ||
import { ReactWrapper } from 'enzyme'; | ||
import { styledMount as mount } from 'spec/helpers/theming'; | ||
import Label from '.'; | ||
import { LabelGallery, bsStyleKnob } from './Label.stories'; | ||
|
||
describe('Label', () => { | ||
let wrapper: ReactWrapper; | ||
|
||
// test the basic component | ||
it('renders the base component (no onClick)', () => { | ||
expect(React.isValidElement(<Label />)).toBe(true); | ||
}); | ||
|
||
it('works with an onClick handler', () => { | ||
const mockAction = jest.fn(); | ||
wrapper = mount(<Label onClick={mockAction} />); | ||
wrapper.find('.label').simulate('click'); | ||
expect(mockAction).toHaveBeenCalled(); | ||
}); | ||
|
||
// test stories from the storybook! | ||
it('renders all the sorybook gallery variants', () => { | ||
wrapper = mount(<LabelGallery />); | ||
Object.values(bsStyleKnob.options).forEach(opt => { | ||
expect(wrapper.find(`.label-${opt}`).at(0).text()).toEqual( | ||
`style: "${opt}"`, | ||
); | ||
}); | ||
}); | ||
|
||
// test things NOT in the storybook! | ||
it('renders custom label styles without melting', () => { | ||
wrapper = mount(<Label bsStyle="foobar" />); | ||
expect(wrapper.find('Label.label-foobar')).toHaveLength(1); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters