Skip to content

Commit 0c93b52

Browse files
committed
updates broken test file
1 parent 70a7fd7 commit 0c93b52

File tree

1 file changed

+20
-22
lines changed

1 file changed

+20
-22
lines changed

packages/@react-facet/dom-fiber/src/setupHostConfig.spec.tsx

+20-22
Original file line numberDiff line numberDiff line change
@@ -2042,36 +2042,34 @@ describe('umnount', () => {
20422042
})
20432043

20442044
it('unsubscribes from a facet (via a fast-* component) inserted using insertBefore, when the parent is unmounted', () => {
2045-
it('unsubscribes from all facets when a elements are swapped', () => {
2046-
const unsubscribe = jest.fn()
2045+
const unsubscribe = jest.fn()
20472046

2048-
const facet: Facet<string> = {
2049-
get: () => 'abc',
2050-
observe: jest.fn().mockReturnValue(unsubscribe),
2051-
}
2047+
const facet: Facet<string> = {
2048+
get: () => 'abc',
2049+
observe: jest.fn().mockReturnValue(unsubscribe),
2050+
}
20522051

2053-
const TestComponent = ({ show, facet }: { facet: Facet<string>; show?: boolean }) => (
2054-
<div>
2055-
{show ? <fast-text text={facet} /> : null}
2056-
<div />
2057-
</div>
2058-
)
2052+
const TestComponent = ({ show, facet }: { facet: Facet<string>; show?: boolean }) => (
2053+
<div>
2054+
{show ? <fast-text text={facet} /> : null}
2055+
<div />
2056+
</div>
2057+
)
20592058

2060-
render(<TestComponent facet={facet} />)
2059+
render(<TestComponent facet={facet} />)
20612060

2062-
expect(facet.observe).toHaveBeenCalledTimes(0)
2063-
expect(unsubscribe).toHaveBeenCalledTimes(0)
2061+
expect(facet.observe).toHaveBeenCalledTimes(0)
2062+
expect(unsubscribe).toHaveBeenCalledTimes(0)
20642063

2065-
render(<TestComponent facet={facet} show />)
2064+
render(<TestComponent facet={facet} show />)
20662065

2067-
expect(facet.observe).toHaveBeenCalledTimes(1)
2068-
expect(unsubscribe).toHaveBeenCalledTimes(0)
2066+
expect(facet.observe).toHaveBeenCalledTimes(1)
2067+
expect(unsubscribe).toHaveBeenCalledTimes(0)
20692068

2070-
render(<></>)
2069+
render(<></>)
20712070

2072-
expect(facet.observe).toHaveBeenCalledTimes(1)
2073-
expect(unsubscribe).toHaveBeenCalledTimes(1)
2074-
})
2071+
expect(facet.observe).toHaveBeenCalledTimes(1)
2072+
expect(unsubscribe).toHaveBeenCalledTimes(1)
20752073
})
20762074

20772075
it('keeps the subscription of facets when moving in a keyed list', () => {

0 commit comments

Comments
 (0)