Skip to content

Commit 818a165

Browse files
chore(testing): fix testing
1 parent 9c7add9 commit 818a165

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

packages/node_modules/action-chain/jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
collectCoverage: true,
3+
testURL: 'http://localhost/',
34
collectCoverageFrom: ['src/**/*.{t,j}s?(x)', '!src/**/*.d.ts'],
45
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
56
transform: {

packages/node_modules/betsy/jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
collectCoverage: true,
3+
testURL: 'http://localhost/',
34
collectCoverageFrom: ['src/**/*.{t,j}s?(x)', '!src/**/*.d.ts'],
45
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
56
transform: {
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`React should connect actions and state to class components 1`] = `
4+
<h1>
5+
bar
6+
</h1>
7+
`;
8+
9+
exports[`React should connect state and actions to stateless components 1`] = `
10+
<h1>
11+
bar
12+
</h1>
13+
`;

0 commit comments

Comments
 (0)