Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { CHANGE_USERNAME } from '../constants';
import { changeUsername } from '../actions';
describe('Home Actions', () => {
describe('changeUsername', () => {
it('should return the correct type and the passed name', () => {
const fixture = 'Max';
const expectedResult = {
type: CHANGE_USERNAME,
username: fixture,
};
expect(changeUsername(fixture)).toEqual(expectedResult);
});
});
});