Skip to content

Commit

Permalink
Remove skips for synapse.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed May 26, 2023
1 parent 4900f35 commit 768f359
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions tests/csapi/txnid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ func mustHaveTransactionIDForEvent(t *testing.T, roomID, eventID, expectedTxnId

// TestTxnScopeOnLocalEcho tests that transaction IDs in the sync response are scoped to the device
func TestTxnScopeOnLocalEcho(t *testing.T) {
// Synapse will support this once https://github.com/matrix-org/synapse/pull/15629 is merged
runtime.SkipIf(t, runtime.Dendrite, runtime.Synapse)
runtime.SkipIf(t, runtime.Dendrite)

deployment := Deploy(t, b.BlueprintCleanHS)
defer deployment.Destroy(t)
Expand Down Expand Up @@ -107,8 +106,7 @@ func TestTxnScopeOnLocalEcho(t *testing.T) {
// TestTxnIdempotencyScopedToDevice tests that transaction IDs are scoped to a device
// and behave as expected across multiple clients if they use the same device ID
func TestTxnIdempotencyScopedToDevice(t *testing.T) {
// Synapse will support this once https://github.com/matrix-org/synapse/pull/15629 is merged
runtime.SkipIf(t, runtime.Dendrite, runtime.Synapse)
runtime.SkipIf(t, runtime.Dendrite)

deployment := Deploy(t, b.BlueprintCleanHS)
defer deployment.Destroy(t)
Expand Down Expand Up @@ -203,8 +201,7 @@ func TestTxnIdempotency(t *testing.T) {
// it still gets back a transaction ID in the sync response and idempotency is respected.
func TestTxnIdWithRefreshToken(t *testing.T) {
// Dendrite and Conduit don't support refresh tokens yet.
// Synapse will pass once https://github.com/matrix-org/synapse/pull/15629 is merged
runtime.SkipIf(t, runtime.Dendrite, runtime.Conduit, runtime.Synapse)
runtime.SkipIf(t, runtime.Dendrite, runtime.Conduit)

deployment := Deploy(t, b.BlueprintCleanHS)
defer deployment.Destroy(t)
Expand Down

0 comments on commit 768f359

Please sign in to comment.