Use source loader for email sprite icons
[ProtonMail-WebClient.git] / packages / utils / percentOf.test.ts
blob90b5719fdb942cd63a71759296ca39a6833a14fd
1 import percentOf from './percentOf';
3 describe('percentOf()', () => {
4     it('returns the value of a percentage of another value', () => {
5         const output = percentOf(10, 200);
7         expect(output).toBe(20);
8     });
10     it("returns a decimal in case the percentage can't be resolved in integers", () => {
11         const output = percentOf(2.5, 10);
13         expect(Math.round(output)).not.toBe(output);
14     });
15 });