chore(editor): Add telemetry for canvas experiment (#18871)

This commit is contained in:
Suguru Inoue
2025-08-29 12:56:25 +02:00
committed by GitHub
parent e663858c9d
commit de87f67c57
37 changed files with 330 additions and 95 deletions

View File

@@ -51,7 +51,11 @@ async function createPiniaStore(
{},
);
ndvStore.activeNodeName = activeNodeName;
if (activeNodeName) {
ndvStore.setActiveNodeName(activeNodeName, 'other');
} else {
ndvStore.unsetActiveNodeName();
}
await useSettingsStore().getSettings();
await useUsersStore().loginWithCookie();
@@ -201,7 +205,7 @@ describe('NodeDetailsViewV2', () => {
pinia,
});
ndvStore.activeNodeName = 'Manual Trigger';
ndvStore.setActiveNodeName('Manual Trigger', 'other');
await waitFor(() => expect(getByTestId('ndv')).toBeInTheDocument());