themer/web/src/getBestForeground.test.js

9 lines
280 B
JavaScript
Raw Permalink Normal View History

2018-10-24 02:35:55 +00:00
import getBestForeground from './getBestForeground';
describe('getBestForeground', () => {
test('getBestForeground', () => {
expect(getBestForeground('#ccc', '#333', '#000')).toBe('#CCCCCC');
expect(getBestForeground('#ccc', '#333', '#fff')).toBe('#333333');
});
});