Skip to content

Commit 1dc40df

Browse files
authored
Treat t9s as local for refresh snapshot tests (#22881)
Following up #22871 PR, treat t9s as local to avoid possible timeouts or issues while running against it since we haven't seen any using current 100ms timeout
1 parent b10c0a9 commit 1dc40df

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/test/test-end-to-end-tests/src/test/refreshSerializerLifeCycle.spec.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,12 @@ describeCompat("Refresh snapshot lifecycle", "NoCompat", (getTestObjectProvider,
167167
testConfig.timeoutRefreshInOriginalContainer ||
168168
testConfig.timeoutRefreshInLoadedContainer
169169
) {
170-
snapshotRefreshTimeoutMs = provider.driver.type === "local" ? 100 : 1000;
170+
snapshotRefreshTimeoutMs =
171+
provider.driver.type === "local" ||
172+
provider.driver.type === "t9s" ||
173+
provider.driver.type === "tinylicious"
174+
? 100
175+
: 1000;
171176
}
172177
const getLatestSnapshotInfoP = new Deferred<void>();
173178
const testContainerConfig = {

0 commit comments

Comments
 (0)