Skip to content

Commit

Permalink
fix(val): Exclude tests, add block culling (#50)
Browse files Browse the repository at this point in the history
* fix(val): Exclude tests, add block culling

- Add block culling
- Add per-item menu to main toolbar (same as right click menu)
- Add ability to exclude some tests

* Fixes in response to feedback

* fix(val): Test accommodation for new verbiage in messages
  • Loading branch information
mammerla authored Jan 7, 2025
1 parent f72263b commit acf6111
Show file tree
Hide file tree
Showing 24 changed files with 607 additions and 339 deletions.
2 changes: 1 addition & 1 deletion app/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"request": "launch",
"name": "Mocha tests",
"program": "${workspaceFolder}/node_modules/ts-mocha/bin/ts-mocha",
"preLaunchTask": "gulp: jsncorebuild",
"preLaunchTask": "npm: jsncorebuild",
"args": [
"-p", "tsconfig.test.json",
"-delay",
Expand Down
10 changes: 10 additions & 0 deletions app/src/UX/Labels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,16 @@ export const ViewLabel: React.FC<React.HTMLAttributes<HTMLSpanElement> & ICompac
</span>
);

export const ItemActionsLabel: React.FC<React.HTMLAttributes<HTMLSpanElement> & ICustomLabelProps> = (
props: ICustomLabelProps
) => (
<span className="label label-toolbar3">
<FontAwesomeIcon icon={props.icon as IconProp} className="fa-lg" />
{!props.isCompact ? <span className="label-text">{props.text}</span> : <></>}
<FontAwesomeIcon icon={faSortDown} className="fa-lg label-arrow" />
</span>
);

export const ConnectLabel: React.FC<React.HTMLAttributes<HTMLSpanElement> & ICompactableLabelProps> = (
props: ICompactableLabelProps
) => (
Expand Down
Loading

0 comments on commit acf6111

Please sign in to comment.