Skip to content

Commit cfabfb7

Browse files
committed
Add Missions.test.js.snap
1 parent 1bd6460 commit cfabfb7

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`Testing Mission Components should render the mission component 1`] = `
4+
<table
5+
className="table table-striped table-bordered table-hover"
6+
>
7+
<thead>
8+
<tr>
9+
<th>
10+
Mission
11+
</th>
12+
<th>
13+
Description
14+
</th>
15+
<th>
16+
Status
17+
</th>
18+
<th>
19+
.
20+
</th>
21+
</tr>
22+
</thead>
23+
<tbody>
24+
<tr>
25+
<td>
26+
Thaicom
27+
</td>
28+
<td>
29+
Thaicom is the name of a series of communications satellites operated from Thailand, and also the name of Thaicom Public Company Limited, which is the company that owns and operates the Thaicom satellite fleet and other telecommunication businesses in Thailand and throughout the Asia-Pacific region. The satellite projects were named Thaicom by the King of Thailand, His Majesty the King Bhumibol Adulyadej, as a symbol of the linkage between Thailand and modern communications technology.
30+
</td>
31+
<td>
32+
<button
33+
className="btn btn-secondary"
34+
disabled={false}
35+
type="button"
36+
>
37+
NOT A MEMBER
38+
</button>
39+
</td>
40+
<td>
41+
<button
42+
className="btn btn-outline-secondary"
43+
disabled={false}
44+
onClick={[Function]}
45+
type="button"
46+
>
47+
Join Mission
48+
</button>
49+
</td>
50+
</tr>
51+
<tr>
52+
<td>
53+
Thaicom
54+
</td>
55+
<td>
56+
Thaicom is the name of a series of communications satellites operated from Thailand, and also the name of Thaicom Public Company Limited, which is the company that owns and operates the Thaicom satellite fleet and other telecommunication businesses in Thailand and throughout the Asia-Pacific region. The satellite projects were named Thaicom by the King of Thailand, His Majesty the King Bhumibol Adulyadej, as a symbol of the linkage between Thailand and modern communications technology.
57+
</td>
58+
<td>
59+
<button
60+
className="btn btn-secondary"
61+
disabled={false}
62+
type="button"
63+
>
64+
NOT A MEMBER
65+
</button>
66+
</td>
67+
<td>
68+
<button
69+
className="btn btn-outline-secondary"
70+
disabled={false}
71+
onClick={[Function]}
72+
type="button"
73+
>
74+
Join Mission
75+
</button>
76+
</td>
77+
</tr>
78+
<tr>
79+
<td>
80+
Thaicom
81+
</td>
82+
<td>
83+
Thaicom is the name of a series of communications satellites operated from Thailand, and also the name of Thaicom Public Company Limited, which is the company that owns and operates the Thaicom satellite fleet and other telecommunication businesses in Thailand and throughout the Asia-Pacific region. The satellite projects were named Thaicom by the King of Thailand, His Majesty the King Bhumibol Adulyadej, as a symbol of the linkage between Thailand and modern communications technology.
84+
</td>
85+
<td>
86+
<button
87+
className="btn btn-secondary"
88+
disabled={false}
89+
type="button"
90+
>
91+
NOT A MEMBER
92+
</button>
93+
</td>
94+
<td>
95+
<button
96+
className="btn btn-outline-secondary"
97+
disabled={false}
98+
onClick={[Function]}
99+
type="button"
100+
>
101+
Join Mission
102+
</button>
103+
</td>
104+
</tr>
105+
</tbody>
106+
</table>
107+
`;

0 commit comments

Comments
 (0)