-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathformat.test.js.snap
More file actions
30 lines (25 loc) · 1.28 KB
/
format.test.js.snap
File metadata and controls
30 lines (25 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`StateVariableDeclarations.sol format 1`] = `
====================================options=====================================
parsers: ["slang"]
printWidth: 80
| printWidth
=====================================input======================================
contract Contract {
bytes32 private constant DOMAIN_SEPARATOR_TYPEHASH = 0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749;
uint256 public transient number1;
uint256 transient public number2;
uint256 constant public BROADCAST_INDEX = type(uint256).max;
bytes32 public constant BROADCAST_INDEX1 = bytes32(type(uint256).max);
}
=====================================output=====================================
contract Contract {
bytes32 private constant DOMAIN_SEPARATOR_TYPEHASH =
0x035aff83d86937d35b32e04f0ddc6ff469290eef2f1b692d8a815c89404d4749;
uint256 public transient number1;
uint256 public transient number2;
uint256 public constant BROADCAST_INDEX = type(uint256).max;
bytes32 public constant BROADCAST_INDEX1 = bytes32(type(uint256).max);
}
================================================================================
`;