add getDevice to mocked utils service

This commit is contained in:
Kyle Spearrin 2018-09-10 16:44:50 -04:00
parent ffa7b35494
commit d0ad865060
1 changed files with 1 additions and 0 deletions

View File

@ -399,4 +399,5 @@ function makeStaticByteArray(length: number) {
class PlatformUtilsServiceMock extends PlatformUtilsService { class PlatformUtilsServiceMock extends PlatformUtilsService {
isEdge = () => false; isEdge = () => false;
isIE = () => false; isIE = () => false;
getDevice = () => super.getDevice();
} }