Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
nick4598 committed Jun 28, 2024
1 parent 0f40eca commit 6f08fbe
Showing 1 changed file with 17 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3733,7 +3733,10 @@ describe("IModelTransformerHub", () => {
"branch",
{
expectThrow: false,
initTransformer: setBranchRelationshipDataBehaviorToUnsafeMigrate,
init: {
initTransformer:
setBranchRelationshipDataBehaviorToUnsafeMigrate,
},
},
],
},
Expand Down Expand Up @@ -3826,7 +3829,10 @@ describe("IModelTransformerHub", () => {
sync: [
"branch",
{
initTransformer: setBranchRelationshipDataBehaviorToUnsafeMigrate,
init: {
initTransformer:
setBranchRelationshipDataBehaviorToUnsafeMigrate,
},
},
],
},
Expand Down Expand Up @@ -3879,7 +3885,10 @@ describe("IModelTransformerHub", () => {
sync: [
"master",
{
initTransformer: setBranchRelationshipDataBehaviorToUnsafeMigrate,
init: {
initTransformer:
setBranchRelationshipDataBehaviorToUnsafeMigrate,
},
},
],
},
Expand Down Expand Up @@ -3965,9 +3974,11 @@ describe("IModelTransformerHub", () => {
sync: [
"branch",
{
initTransformer: (transformer) =>
(transformer["_options"]["branchRelationshipDataBehavior"] =
"unsafe-migrate"),
init: {
initTransformer: (transformer) =>
(transformer["_options"]["branchRelationshipDataBehavior"] =
"unsafe-migrate"),
},
},
], // Sync again with no changes except for ones which may get made by unsafe-migrate.
},
Expand Down

0 comments on commit 6f08fbe

Please sign in to comment.