Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Oct 15, 2024
1 parent 8602e0e commit d905a99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/framer-motion-3d/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@
"@rollup/plugin-commonjs": "^22.0.1",
"three": "^0.137.0"
},
"gitHead": "4215639bba60cae3a3d8d642d10149fd58f22f85"
"gitHead": "8602e0ec2c5d7f7286f8f4e6356a21d13d3dc0b6"
}
3 changes: 2 additions & 1 deletion packages/framer-motion/cypress/integration/waapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ describe("waapi", () => {
// Explicitly defined startTime should be the same between main thread and WAAPI
.get(".explicit-timer")
.should(([waapi, sync]: any) => {
expect(waapi.innerHTML).to.equal(sync.innerHTML)
expect(sync.innerHTML).to.equal("101")
expect(waapi.innerHTML).to.equal("101")
expect(waapi.innerHTML).to.equal(sync.innerHTML)
})
// Explicitly defined startTime should not be the same as automatically defined startTime
.get(".sync-timer")
Expand Down
2 changes: 1 addition & 1 deletion packages/framer-motion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,5 @@
"maxSize": "2.5 kB"
}
],
"gitHead": "4215639bba60cae3a3d8d642d10149fd58f22f85"
"gitHead": "8602e0ec2c5d7f7286f8f4e6356a21d13d3dc0b6"
}

0 comments on commit d905a99

Please sign in to comment.