1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-06 16:05:59 +09:00
namae/src/util/pwa.test.ts

6 lines
124 B
TypeScript
Raw Normal View History

2020-08-31 08:41:53 +09:00
import { isStandalone } from './pwa';
2019-09-24 13:55:43 +09:00
it('recognize standalone mode', () => {
2020-08-31 08:41:53 +09:00
expect(isStandalone()).toEqual(false);
});