Skip to content

Commit

Permalink
copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jan 6, 2023
1 parent e341459 commit b7bf046
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ exports[`error when internal matcher inside a custom matcher fails 1`] = `
expected 1 to be equal to 2
22 |
23 | it('internal match should not pass', () => {
> 24 | expect(1).toPass(2);
29 |
30 | it('internal match should not pass', () => {
> 31 | expect(1).toPass(2);
| ^
25 | });
26 |
32 | });
33 |
at Object.toPass (__tests__/index.test.js:24:13)"
at Object.toPass (__tests__/index.test.js:31:13)"
`;
7 changes: 7 additions & 0 deletions e2e/internal-matcher-exposure/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

const {expect} = require('expect');

expect.extend({
Expand Down

0 comments on commit b7bf046

Please sign in to comment.