mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
update tests
This commit is contained in:
parent
1a16800e1e
commit
a616aaf1b4
3 changed files with 13 additions and 3 deletions
|
|
@ -10,4 +10,14 @@ describe('App Router', () => {
|
||||||
cy.visit(ROUTES.SIGN_UP);
|
cy.visit(ROUTES.SIGN_UP);
|
||||||
cy.get('section');
|
cy.get('section');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('contains SignIn page', () => {
|
||||||
|
cy.visit(ROUTES.SIGN_IN);
|
||||||
|
cy.get('section');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('contains Developers page', () => {
|
||||||
|
cy.visit(ROUTES.DEVELOPERS);
|
||||||
|
cy.get('section');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ const DevProfile: FC<DevSummary> = ({
|
||||||
</div>
|
</div>
|
||||||
<ul>
|
<ul>
|
||||||
{skills.map((s, i) => (
|
{skills.map((s, i) => (
|
||||||
<li className="text-primary">
|
<li className="text-primary" key={i}>
|
||||||
<FontAwesomeIcon icon={faCheck} /> {s}
|
<FontAwesomeIcon icon={faCheck} /> {s}
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,9 @@ const Developers: FC = () => {
|
||||||
name: 'Ruidy Nemausat',
|
name: 'Ruidy Nemausat',
|
||||||
picture:
|
picture:
|
||||||
'https://lh3.googleusercontent.com/a-/AOh14GhncH95MWKwPR3TRKy4eVd4n6w0-fobe4dhiam2xA',
|
'https://lh3.googleusercontent.com/a-/AOh14GhncH95MWKwPR3TRKy4eVd4n6w0-fobe4dhiam2xA',
|
||||||
description: 'Frontend Engineer at DESY',
|
description: 'Fullstack Engineer at DESY',
|
||||||
location: 'Hamburg, DE',
|
location: 'Hamburg, DE',
|
||||||
skills: ['React', 'TypeScript', 'Redux', 'GraphQL'],
|
skills: ['React', 'TypeScript', 'Redux', 'Nodejs'],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue