mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
12 lines
377 B
TypeScript
12 lines
377 B
TypeScript
import { getBackdropValueForSheet } from './utils';
|
|
|
|
describe('getBackdropValueForSheet()', () => {
|
|
it('should return a valid integer when backdropBreakpoint is 1', () => {
|
|
/**
|
|
* Issue: https://github.com/ionic-team/ionic-framework/issues/25402
|
|
*/
|
|
const backdropBreakpoint = 1;
|
|
expect(getBackdropValueForSheet(1, backdropBreakpoint)).toBe(0);
|
|
});
|
|
});
|