/** @test **/
 public function getActiveThemeId_ReturnsActiveDesktopThemeId()
 {
     // Arrange
     $this->wrapperFake->setResponse("get", ShopifyEndpoints::themesIndex(), StubApiResponses\Theme::$themesIndex);
     // Act
     $id = $this->clientWithFake->getActiveThemeId();
     // Assert
     $this->assertEquals(828155753, $id);
 }