Skip to content

Commit 9b68f4a

Browse files
fixes
1 parent 7f66694 commit 9b68f4a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/learning-snippets/src/setup.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
*--------------------------------------------------------------------------------------------*/
55
// WARNING: The order of imports in this file is important!
66

7-
// setup chai
7+
/// setup chai
88
import chai from "chai";
9+
import sinonChai from "sinon-chai";
10+
chai.use(sinonChai);
11+
912
// get rid of various xhr errors in the console
1013
import globalJsdom from "global-jsdom";
1114
import * as jsdom from "jsdom";
12-
import sinonChai from "sinon-chai";
13-
14-
chai.use(sinonChai);
1515

1616
globalJsdom(undefined, {
1717
virtualConsole: new jsdom.VirtualConsole().sendTo(console, { omitJSDOMErrors: true }),

packages/itwin/tree-widget/src/tree-widget-react/components/trees/common/components/TreeNodeVisibilityButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const useVisibilityContext = () => {
8787
return useContext(visibilityContext);
8888
};
8989

90-
/** @alpha */
90+
/** @internal */
9191
export function VisibilityContextProvider({ onVisibilityButtonClick, getVisibilityButtonState, children }: PropsWithChildren<VisibilityContext>) {
9292
return (
9393
<visibilityContext.Provider

0 commit comments

Comments
 (0)