-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Section): defaultIsOpen should behave as expected (#6326)
Co-authored-by: Justin Williams <[email protected]>
- Loading branch information
Showing
4 changed files
with
130 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,101 @@ | ||
/* | ||
* Copyright 2015 Palantir Technologies, Inc. All rights reserved. | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
import { assert } from "chai"; | ||
import { mount } from "enzyme"; | ||
import * as React from "react"; | ||
|
||
import { IconNames } from "@blueprintjs/icons"; | ||
|
||
import { Classes, H6, Section, SectionCard } from "../../src"; | ||
|
||
describe("<Section>", () => { | ||
let containerElement: HTMLElement | undefined; | ||
|
||
beforeEach(() => { | ||
containerElement = document.createElement("div"); | ||
document.body.appendChild(containerElement); | ||
}); | ||
afterEach(() => { | ||
containerElement?.remove(); | ||
}); | ||
|
||
it("supports className", () => { | ||
const wrapper = mount(<Section className="foo" />, { | ||
attachTo: containerElement, | ||
}); | ||
assert.isTrue(wrapper.find(`.${Classes.SECTION}`).hostNodes().exists()); | ||
assert.isTrue(wrapper.find(`.foo`).hostNodes().exists()); | ||
}); | ||
|
||
it("supports icon", () => { | ||
const wrapper = mount(<Section icon={IconNames.GRAPH} title="title" />, { | ||
attachTo: containerElement, | ||
}); | ||
assert.isTrue(wrapper.find(`[data-icon="${IconNames.GRAPH}"]`).exists()); | ||
}); | ||
|
||
it("renders optional title element", () => { | ||
const wrapper = mount(<Section title="title" />, { | ||
attachTo: containerElement, | ||
}); | ||
assert.isTrue(wrapper.find(H6).exists()); | ||
}); | ||
|
||
it("renders optional sub-title element", () => { | ||
const wrapper = mount(<Section title="title" subtitle="subtitle" />, { | ||
attachTo: containerElement, | ||
}); | ||
assert.isTrue(wrapper.find(`.${Classes.SECTION_HEADER_SUB_TITLE}`).hostNodes().exists()); | ||
}); | ||
|
||
it("collapsible is open when defaultIsOpen={undefined}", () => { | ||
const wrapper = mount( | ||
<Section collapsible={true} collapseProps={{ defaultIsOpen: undefined }}> | ||
<SectionCard>is open</SectionCard> | ||
</Section>, | ||
{ | ||
attachTo: containerElement, | ||
}, | ||
); | ||
assert.isTrue(wrapper.find(`[data-icon="${IconNames.CHEVRON_UP}"]`).exists()); | ||
}); | ||
|
||
it("collapsible is open when defaultIsOpen={true}", () => { | ||
const wrapper = mount( | ||
<Section collapsible={true} collapseProps={{ defaultIsOpen: true }}> | ||
<SectionCard>is open</SectionCard> | ||
</Section>, | ||
{ | ||
attachTo: containerElement, | ||
}, | ||
); | ||
assert.isTrue(wrapper.find(`[data-icon="${IconNames.CHEVRON_UP}"]`).exists()); | ||
}); | ||
|
||
it("collapsible is closed when defaultIsOpen={false}", () => { | ||
const wrapper = mount( | ||
<Section collapsible={true} collapseProps={{ defaultIsOpen: false }}> | ||
<SectionCard>is closed</SectionCard> | ||
</Section>, | ||
{ | ||
attachTo: containerElement, | ||
}, | ||
); | ||
|
||
assert.isTrue(wrapper.find(`[data-icon="${IconNames.CHEVRON_DOWN}"]`).exists()); | ||
}); | ||
}); |
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
f113fc1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix(Section): defaultIsOpen should behave as expected (#6326)
Build artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job.