You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
281 B
13 lines
281 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`actions should decrement should create decrement action 1`] = `
|
|
Object {
|
|
"type": "DECREMENT_COUNTER",
|
|
}
|
|
`;
|
|
|
|
exports[`actions should increment should create increment action 1`] = `
|
|
Object {
|
|
"type": "INCREMENT_COUNTER",
|
|
}
|
|
`;
|
|
|