Skip to content

Commit

Permalink
Latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgperry committed Jun 19, 2024
1 parent be06a73 commit 421c179
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions dev/react/src/tests/drag-tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ li {
}
li span {
color: black;
flex-shrink: 1;
flex-grow: 1;
white-space: nowrap;
Expand Down
4 changes: 2 additions & 2 deletions dev/react/src/tests/layout-shared-crossfade-nested.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { motion, AnimatePresence } from "framer-motion"
import { useState } from "react";
import { useState } from "react"

const transition = { duration: 0.2, ease: () => 0.5 }
const transition = { duration: 1, ease: () => 0.5 }
export const App = () => {
const params = new URLSearchParams(window.location.search)
const type = params.get("type") || true
Expand Down
2 changes: 1 addition & 1 deletion packages/framer-motion/cypress/integration/drag-tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe("Tabs demo", () => {
cy.visit("?test=drag-tabs")
.get("#Tomato-remove")
.click()
.wait(150)
.wait(400)
.get("#Lettuce-tab")
.trigger("pointerdown", 40, 10)
.wait(30)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,6 @@ describe("Shared layout: nested crossfade transition", () => {
.get("#a")
.trigger("click")
.wait(50)
.get("#a")
.should(([$box]: any) => {
expectBbox($box, {
top: 200,
Expand Down

0 comments on commit 421c179

Please sign in to comment.