Skip to content

Commit 8b98275

Browse files
committed
add snapshots
1 parent e279fe5 commit 8b98275

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`getAuthenticode result matches snapshot for bad signature 1`] = `
4+
Object {
5+
"IsOSBinary": false,
6+
"Path": Any<String>,
7+
"SignatureType": 1,
8+
"SignerCertificate": Anything,
9+
"Status": 3,
10+
"StatusMessage": Any<String>,
11+
"TimeStamperCertificate": null,
12+
}
13+
`;
14+
15+
exports[`getAuthenticode result matches snapshot for good signature 1`] = `
16+
Object {
17+
"IsOSBinary": false,
18+
"Path": Any<String>,
19+
"SignatureType": 1,
20+
"SignerCertificate": Anything,
21+
"Status": 0,
22+
"StatusMessage": Any<String>,
23+
"TimeStamperCertificate": null,
24+
}
25+
`;
26+
27+
exports[`getAuthenticode result matches snapshot for ugly signature 1`] = `
28+
Object {
29+
"IsOSBinary": false,
30+
"Path": Any<String>,
31+
"SignatureType": 0,
32+
"SignerCertificate": null,
33+
"Status": 2,
34+
"StatusMessage": Any<String>,
35+
"TimeStamperCertificate": null,
36+
}
37+
`;

0 commit comments

Comments
 (0)