{{ message }}
Update branch names for E2E tests workflow#12
Merged
Merged
Conversation
thrift@0.23 added a dependency on uuid@13, which is ESM-only (type: "module"). The default ts-jest setup ignores node_modules and loads it as CommonJS, causing 'Unexpected token export' and all e2e suites failing to load. Allow .js transforms and stop ignoring uuid so it is compiled to CommonJS.
The multi-device redirection test wrote all five devices with a bare Date.now() timestamp. In a 3-node cluster the fast write loop could assign the same millisecond to two devices; tree-model SELECT aligns rows by timestamp, merging the colliding rows so the query returned 4 rows and the >= 5 assertion failed. Offset each timestamp by its loop index so every device gets a distinct timestamp.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This pull request updates the branch filters for the end-to-end (E2E) test workflows to run on the
developbranch instead ofmain. This ensures that E2E tests are triggered for pushes and pull requests targeting thedevelopbranch.Workflow configuration updates:
.github/workflows/e2e-1c1d.yml: Changed push and pull request triggers to use thedevelopbranch instead ofmain..github/workflows/e2e-1c3d.yml: Changed push and pull request triggers to use thedevelopbranch instead ofmain.