diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-04-19 11:32:56 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-04-19 11:32:56 -0400 |
| commit | dfc6977317473f0ba8bc7be66994a39968097b4f (patch) | |
| tree | 9e9456742dd05ba5c51843c38f876c0bbaa39dd3 /frontend/jest.setup.js | |
| parent | 990d5ec5af9cea56812e952c3155a346876621cb (diff) | |
queries fix
Diffstat (limited to 'frontend/jest.setup.js')
| -rw-r--r-- | frontend/jest.setup.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/jest.setup.js b/frontend/jest.setup.js index 1783f17..c3fa88e 100644 --- a/frontend/jest.setup.js +++ b/frontend/jest.setup.js @@ -8,9 +8,9 @@ expect.extend({ const receivedVariables = received.mock.calls[0][0].variables; const pass = this.equals(receivedVariables, argument); const message = () => - `expected ${this.utils.printExpected(argument)} to match ${this.utils.printReceived( - receivedVariables - )}`; + `expected ${this.utils.printExpected(argument)} + +to match ${this.utils.printReceived(receivedVariables)}`; return { message, pass }; }, |
