mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 01:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			296 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			296 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| import expect from 'expect';
 | |
| import {{ camelCase name }}Reducer from '../reducer';
 | |
| import { fromJS } from 'immutable';
 | |
| 
 | |
| describe('{{ camelCase name }}Reducer', () => {
 | |
|   it('returns the initial state', () => {
 | |
|     expect({{ camelCase name }}Reducer(undefined, {})).toEqual(fromJS({}));
 | |
|   });
 | |
| });
 | 
