mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 10:49:02 +00:00
* Install react-testing-library * Add some trivial tests with snapshot * Add File transfer tests * Add Home component test * Add Chat tests * Add tests for nav * 100% coverage for About component * 100% coverage room link * 100% coverage for RoomLocked * 100% coverage for T component * 100% coverage Settings * More 90% coverage for Chat component * Ignore some file from coverage * 100% coverage fo redux actions * 100% coverage for translations * Near 100% coverage for reducer * Better coverage for Home component * Run tests in circleCI
36 lines
676 B
Plaintext
36 lines
676 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`T component is displaying 1`] = `
|
|
<DocumentFragment>
|
|
Welcome to Darkwire v2.0
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`T component is displaying 2`] = `
|
|
<DocumentFragment>
|
|
Bienvenue sur Darkwire v2.0
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`T component is displaying 3`] = `
|
|
<DocumentFragment>
|
|
Welcome to Darkwire v2.0
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`T component is displaying 4`] = `<DocumentFragment />`;
|
|
|
|
exports[`T component is displaying 5`] = `
|
|
<DocumentFragment>
|
|
<span>
|
|
Alan joined
|
|
</span>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`T component is displaying 6`] = `
|
|
<DocumentFragment>
|
|
username joined
|
|
</DocumentFragment>
|
|
`;
|