mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
35 lines
569 B
Plaintext
35 lines
569 B
Plaintext
// Vitest Snapshot v1
|
|
|
|
exports[`Link changes the class when hovered 1`] = `
|
|
<a
|
|
className="normal"
|
|
href="http://antfu.me"
|
|
onMouseEnter={[Function]}
|
|
onMouseLeave={[Function]}
|
|
>
|
|
Anthony Fu
|
|
</a>
|
|
`;
|
|
|
|
exports[`Link changes the class when hovered 2`] = `
|
|
<a
|
|
className="hovered"
|
|
href="http://antfu.me"
|
|
onMouseEnter={[Function]}
|
|
onMouseLeave={[Function]}
|
|
>
|
|
Anthony Fu
|
|
</a>
|
|
`;
|
|
|
|
exports[`Link changes the class when hovered 3`] = `
|
|
<a
|
|
className="normal"
|
|
href="http://antfu.me"
|
|
onMouseEnter={[Function]}
|
|
onMouseLeave={[Function]}
|
|
>
|
|
Anthony Fu
|
|
</a>
|
|
`;
|