test: tests for belief node

ref: N25B-408
This commit is contained in:
Björn Otgaar
2025-12-15 13:04:53 +01:00
parent 757435e9f8
commit ae8ef317a4
2 changed files with 744 additions and 2 deletions

View File

@@ -46,8 +46,7 @@ export type BasicBeliefNode = Node<BasicBeliefNodeData>
* @param connection - The connection or edge being attempted to connect towards.
* @returns `true` if the connection is defined; otherwise, `false`.
*/
export function BasicBeliefNodeCanConnect(connection: Connection | Edge): boolean {
return (connection != undefined);
export function BasicBeliefNodeCanConnect(_connection: Connection | Edge) {
}
/**