MCPcopy Index your code
hub / github.com/tinyplex/tinybase / getValueAction

Function getValueAction

test/unit/core/ui-react/ui-react-inspector.test.tsx:48–56  ·  view source on GitHub ↗
(valueId: string, actionTitle: string)

Source from the content-addressed store, hash-verified

46};
47
48const getValueAction = (valueId: string, actionTitle: string): HTMLElement => {
49 const row = getDetails('Values')
50 .querySelector(`th[title="${valueId}"]`)
51 ?.closest('tr');
52 expect(row).not.toBeNull();
53 const action = row?.querySelector(`img[title="${actionTitle}"]`);
54 expect(action).not.toBeNull();
55 return action as HTMLElement;
56};
57
58const getCellAction = (
59 tableTitle: string,

Callers 1

Calls 1

getDetailsFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…