From 1eb3c7cabc2eb7ffa12c6a37c11c6719553ea954 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Mon, 13 May 2024 16:05:57 -0700 Subject: [PATCH] wip --- tests/Orchestration/Base.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/Orchestration/Base.php b/tests/Orchestration/Base.php index d326ebb..ebbe546 100644 --- a/tests/Orchestration/Base.php +++ b/tests/Orchestration/Base.php @@ -488,6 +488,10 @@ public function testUsageStats(): void $this->assertNotEmpty($containerId1); + $output = ''; + Console::execute("docker inspect $containerId1", '', $output); + $dump($output); + $containerId2 = static::getOrchestration()->run( 'containerstack/alpine-stress', 'UsageStats2', @@ -507,6 +511,10 @@ public function testUsageStats(): void $this->assertNotEmpty($containerId2); + $output = ''; + Console::execute("docker inspect $containerId2", '', $output); + $dump($output); + $output = ''; static::getOrchestration()->execute($containerId1, ['which', 'screen'], $output); $dump($output);