forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathto_match_inline_snapshot.test.js
More file actions
181 lines (161 loc) · 5.86 KB
/
to_match_inline_snapshot.test.js
File metadata and controls
181 lines (161 loc) · 5.86 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**
* Copyright (c) 2014-present, Facebook, Inc. 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.
*
* @flow
*/
const fs = require('fs');
const path = require('path');
const {makeTemplate, writeFiles, cleanup} = require('../Utils');
const runJest = require('../runJest');
const DIR = path.resolve(__dirname, '../toMatchInlineSnapshot');
const TESTS_DIR = path.resolve(DIR, '__tests__');
const readFile = filename =>
fs.readFileSync(path.join(TESTS_DIR, filename), 'utf8');
beforeEach(() => cleanup(TESTS_DIR));
afterAll(() => cleanup(TESTS_DIR));
test('basic support', () => {
const filename = 'basic-support.test.js';
const template = makeTemplate(
`test('inline snapshots', () => expect($1).toMatchInlineSnapshot());\n`,
);
{
writeFiles(TESTS_DIR, {
[filename]: template(['{apple: "original value"}']),
});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('initial write');
}
{
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('Snapshots: 1 passed, 1 total');
expect(stderr).not.toMatch('1 snapshot written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('snapshot passed');
}
// This test below also covers how jest-editor-support creates terse messages
// for letting a Snapshot update, so if the wording is updated, please edit
// /packages/jest-editor-support/src/test_reconciler.js
{
writeFiles(TESTS_DIR, {
[filename]: readFile(filename).replace('original value', 'updated value'),
});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('Received value does not match stored snapshot');
expect(status).toBe(1);
expect(fileAfter).toMatchSnapshot('snapshot mismatch');
}
{
const {stderr, status} = runJest(DIR, [
'-w=1',
'--ci=false',
filename,
'-u',
]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot updated from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('snapshot updated');
}
});
test('handles property matchers', () => {
const filename = 'handle-property-matchers.test.js';
const template = makeTemplate(`test('handles property matchers', () => {
expect({createdAt: $1}).toMatchInlineSnapshot({createdAt: expect.any(Date)});
});
`);
{
writeFiles(TESTS_DIR, {[filename]: template(['new Date()'])});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('initial write');
}
{
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('Snapshots: 1 passed, 1 total');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('snapshot passed');
}
{
writeFiles(TESTS_DIR, {
[filename]: readFile(filename).replace('new Date()', '"string"'),
});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch(
'Received value does not match snapshot properties for "handles property matchers 1".',
);
expect(stderr).toMatch('Snapshots: 1 failed, 1 total');
expect(status).toBe(1);
expect(fileAfter).toMatchSnapshot('snapshot failed');
}
{
writeFiles(TESTS_DIR, {
[filename]: readFile(filename).replace('any(Date)', 'any(String)'),
});
const {stderr, status} = runJest(DIR, [
'-w=1',
'--ci=false',
filename,
'-u',
]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot updated from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot('snapshot updated');
}
});
test('supports async matchers', () => {
const filename = 'async-matchers.test.js';
const test = `
test('inline snapshots', async () => {
expect(Promise.resolve('success')).resolves.toMatchInlineSnapshot();
expect(Promise.reject('fail')).rejects.toMatchInlineSnapshot();
});
`;
writeFiles(TESTS_DIR, {[filename]: test});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('2 snapshots written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot();
});
test('supports async tests', () => {
const filename = 'async.test.js';
const test = `
test('inline snapshots', async () => {
await 'next tick';
expect(42).toMatchInlineSnapshot();
});
`;
writeFiles(TESTS_DIR, {[filename]: test});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot();
});
test('writes snapshots with non-literals in expect(...)', () => {
const filename = 'async.test.js';
const test = `
it('works with inline snapshots', () => {
expect({a: 1}).toMatchInlineSnapshot();
});
`;
writeFiles(TESTS_DIR, {[filename]: test});
const {stderr, status} = runJest(DIR, ['-w=1', '--ci=false', filename]);
const fileAfter = readFile(filename);
expect(stderr).toMatch('1 snapshot written from 1 test suite.');
expect(status).toBe(0);
expect(fileAfter).toMatchSnapshot();
});