import Branding from '@components/Branding/Branding';
import { render, screen } from '@test-utils';
describe('Branding', () => {
it('renders the title wrapped with an h1 element on homepage', () => {
render();
expect(
screen.getByRole('heading', { level: 1, name: 'Armand Philippot' })
).toBeInTheDocument();
});
it('renders the title wrapped without an h1 element on other pages', () => {
render();
expect(
screen.queryByRole('heading', { level: 1, name: 'Armand Philippot' })
).not.toBeInTheDocument();
});
it('renders the baseline', () => {
render();
// Currently, only French translation is returned.
expect(screen.getByText('Intégrateur web')).toBeInTheDocument();
});
});
ain'>index : www.armandphilippot.com
blob: 241c9c35961f315275af001ef530671a47468db3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
@use "@styles/abstracts/functions" as fun;
@use "@styles/abstracts/mixins" as mix;
@use "@styles/abstracts/placeholders";
.link {
--draw-border-thickness: #{fun.convert-px(4)};
--draw-border-color1: var(--color-primary-light);
--draw-border-color2: var(--color-primary-lighter);
--icon-size: #{fun.convert-px(30)};
display: inline-flex;
flex-flow: column nowrap;
place-items: center;
place-content: center;
row-gap: var(--spacing-2xs);
min-width: var(--link-min-width, fun.convert-px(85));
padding: var(--spacing-xs);
background: inherit;
font-size: var(--font-size-sm);
font-variant: small-caps;
font-weight: 600;
line-height: 1;
text-decoration: none;
@include mix.media("screen") {
@include mix.dimensions("md") {
border-radius: 8%;
}
}
&:hover,
&:focus {
@extend %draw-borders;
}
&:focus {
color: var(--color-primary-light);
}
&:active {
--draw-border-color1: var(--color-primary-dark);
--draw-border-color2: var(--color-primary-light);
@extend %draw-borders;
}
}
|