File tree 2 files changed +14
-5
lines changed
embeds/embed-core/playwright/tests
2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,28 @@ test.describe("Embed Pages", () => {
10
10
await page . goto ( "http://localhost:3000/free/30min/embed" ) ;
11
11
// Checks the margin from top by checking the distance between the div inside main from the viewport
12
12
const marginFromTop = await page . evaluate ( async ( ) => {
13
- return await new Promise ( ( resolve ) => {
13
+ return await new Promise < {
14
+ bookerContainer : number ;
15
+ mainEl : number ;
16
+ } > ( ( resolve ) => {
14
17
( function tryGettingBoundingRect ( ) {
15
18
const mainElement = document . querySelector ( ".main" ) ;
19
+ const bookerContainer = document . querySelector ( '[data-testid="booker-container"]' ) ;
16
20
17
- if ( mainElement ) {
21
+ if ( mainElement && bookerContainer ) {
18
22
// This returns the distance of the div element from the viewport
19
23
const mainElBoundingRect = mainElement . getBoundingClientRect ( ) ;
20
- resolve ( mainElBoundingRect . top ) ;
24
+ const bookerContainerBoundingRect = bookerContainer . getBoundingClientRect ( ) ;
25
+ resolve ( { bookerContainer : bookerContainerBoundingRect . top , mainEl : mainElBoundingRect . top } ) ;
21
26
} else {
22
27
setTimeout ( tryGettingBoundingRect , 500 ) ;
23
28
}
24
29
} ) ( ) ;
25
30
} ) ;
26
31
} ) ;
27
32
28
- expect ( marginFromTop ) . toBe ( 0 ) ;
33
+ expect ( marginFromTop . bookerContainer ) . toBe ( 0 ) ;
34
+ expect ( marginFromTop . mainEl ) . toBe ( 0 ) ;
29
35
} ) ;
30
36
31
37
test ( "Event Type Page: should have margin top on non embed page" , async ( { page } ) => {
Original file line number Diff line number Diff line change @@ -268,9 +268,12 @@ const BookerComponent = ({
268
268
) } >
269
269
< div
270
270
ref = { animationScope }
271
+ data-testid = "booker-container"
271
272
className = { classNames (
272
273
...getBookerSizeClassNames ( layout , bookerState , hideEventTypeDetails ) ,
273
- `bg-default dark:bg-muted grid max-w-full items-start dark:[color-scheme:dark] sm:transition-[width] sm:duration-300 sm:motion-reduce:transition-none md:mt-16 md:flex-row` ,
274
+ `bg-default dark:bg-muted grid max-w-full items-start dark:[color-scheme:dark] sm:transition-[width] sm:duration-300 sm:motion-reduce:transition-none md:flex-row` ,
275
+ // We can't let embed have margin from top because for inline embed user wouldn't want that extra space at the top
276
+ ! isEmbed ? "md:mt-16" : "" ,
274
277
// We remove border only when the content covers entire viewport. Because in embed, it can almost never be the case that it covers entire viewport, we show the border there
275
278
( layout === BookerLayouts . MONTH_VIEW || isEmbed ) && "border-subtle rounded-md" ,
276
279
! isEmbed && "sm:transition-[width] sm:duration-300" ,
You can’t perform that action at this time.
0 commit comments