mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 03:50:26 +00:00

As a result of taking a look on PR #1967 I realized there is 819 executable files in this repository. It is obvious this is an error.
19 lines
364 B
Handlebars
19 lines
364 B
Handlebars
|
|
import {
|
|
defaultAction,
|
|
} from '../actions';
|
|
import {
|
|
DEFAULT_ACTION,
|
|
} from '../constants';
|
|
|
|
describe('{{ properCase name }} actions', () => {
|
|
describe('Default Action', () => {
|
|
it('has a type of DEFAULT_ACTION', () => {
|
|
const expected = {
|
|
type: DEFAULT_ACTION,
|
|
};
|
|
expect(defaultAction()).toEqual(expected);
|
|
});
|
|
});
|
|
});
|