react-hold
Version:
Hold the empty presentational components in react.js
15 lines (12 loc) • 310 B
JavaScript
import { LEFT, CENTER, RIGHT } from '../align';
describe('Align constants', function () {
it('has LEFT', function () {
expect(LEFT).toBe('left');
});
it('has CENTER', function () {
expect(CENTER).toBe('center');
});
it('has CENTER', function () {
expect(RIGHT).toBe('right');
});
});