aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/utils/util.spec.ts
diff options
context:
space:
mode:
authorEylon Malin <eylon.malin@intl.att.com>2019-11-20 10:41:18 +0200
committerEylon Malin <eylon.malin@intl.att.com>2019-11-20 10:41:18 +0200
commit6225ebb29254ca6381ce91a3e0553f592b2fbc40 (patch)
tree43efd98e2343b45fd43ea3ef4c88112c241082b3 /vid-webpack-master/src/app/shared/utils/util.spec.ts
parent7b04c91400593f64cf83c8feae1f4db1db7d69ad (diff)
fix is a-la-carte cross modern UI
Issue-ID: VID-701 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I6248382d71e6cec54104d42d95b0130d51404410
Diffstat (limited to 'vid-webpack-master/src/app/shared/utils/util.spec.ts')
-rw-r--r--vid-webpack-master/src/app/shared/utils/util.spec.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/vid-webpack-master/src/app/shared/utils/util.spec.ts b/vid-webpack-master/src/app/shared/utils/util.spec.ts
index 2f9142f9c..4b39764f5 100644
--- a/vid-webpack-master/src/app/shared/utils/util.spec.ts
+++ b/vid-webpack-master/src/app/shared/utils/util.spec.ts
@@ -1,5 +1,6 @@
import {Utils} from "./utils";
import {TestBed} from "@angular/core/testing";
+import each from "jest-each";
describe('Util', () => {
@@ -28,4 +29,15 @@ describe('Util', () => {
test('hasContents should return true if object is not undefined and not null and not empty', () => {
expect(Utils.hasContents("someValue")).toBeTruthy();
});
+
+ const instantiationTypesDataProvider = [
+ ['Macro', false ],
+ ['ALaCarte', true ],
+ ['ClientConfig', true],
+ ['dont know', true]
+ ];
+ each(instantiationTypesDataProvider).test('instantiationType %s isALaCarte shall be %s', (instantiationType, expected ) => {
+ expect(Utils.isALaCarte(instantiationType)).toEqual(expected);
+ });
+
});