From f22941521350d87d0b97c7f861e517e9ea8d682f Mon Sep 17 00:00:00 2001 From: Zacharias Fragkiadakis Date: Sat, 4 Jan 2025 10:44:02 +0200 Subject: [PATCH] test(debug): log rad self Signed-off-by: Zacharias Fragkiadakis --- test/e2e/specs/httpd.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/e2e/specs/httpd.spec.ts b/test/e2e/specs/httpd.spec.ts index eb20073a..36591933 100644 --- a/test/e2e/specs/httpd.spec.ts +++ b/test/e2e/specs/httpd.spec.ts @@ -1,6 +1,7 @@ import { browser } from '@wdio/globals' import type { OutputView, Setting, SettingsEditor } from 'wdio-vscode-service' import { Key } from 'webdriverio' +import { $ } from 'zx' import { nodeHomePath } from '../constants/config' describe('Httpd', () => { @@ -22,6 +23,9 @@ describe('Httpd', () => { return (await getTextSettingValue(pathToNodeHomeSetting)) === nodeHomePath }) + const radSelf = await $`rad self` + console.log({ radSelf }) + await expectOutputToContain(outputView, 'Using already unsealed Radicle identity') }) })