Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 12c434b

Browse files
committedMar 3, 2025·
Verifying os is what I think it is (DH-18428-2)
1 parent 5f4d0d4 commit 12c434b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎e2e-testing/src/testUtils.ts

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ export async function openResources(
2020
wsPath: string,
2121
fileName: string
2222
): Promise<void> {
23+
console.log('Platform:', os.platform());
24+
2325
if (['win32', 'darwin'].includes(os.platform())) {
2426
await VSBrowser.instance.openResources(wsPath, fileName);
2527
return;

‎scripts/e2e.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ docker compose --project-directory e2e-testing up -d dhc-server
1111

1212
# Wait for the DH server to start
1313
until [ "$(curl --silent --fail --request OPTIONS --output /dev/null http://localhost:10000/jsapi/dh-core.js && echo 'pass' || echo 'fail')" = "pass" ]; do
14-
echo "Waiting for service to be ready..."
14+
echo "Waiting for Deephaven server..."
1515
sleep 2
1616
done
17-
echo "Service is ready!"
17+
echo "Deephvaen server is ready!"
1818

1919
# Run e2e tests
2020
echo "Running E2E tests..."

0 commit comments

Comments
 (0)
Please sign in to comment.