aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-09-04 13:38:46 +0530
committerTakamune Cho <tc012c@att.com>2018-09-04 19:02:44 +0000
commit3cda2df32f17ee304fd34441a58e72becc0639b6 (patch)
tree893598f917f54d5086ca41616a59309f916ba20c
parentd24453b1f0982763ceb5c52f7057899dfd6852c3 (diff)
order-by.pipe- added test case
added test case to test and cover order orderByComparator() when orderby parameter is number. Issue-ID: APPC-1064 Change-Id: Ia3c1c17d4b95f58559c2467769b9071ed08a32ee Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r--src/app/shared/modules/tidy-table/order-by.pipe.spec.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app/shared/modules/tidy-table/order-by.pipe.spec.ts b/src/app/shared/modules/tidy-table/order-by.pipe.spec.ts
index c856ebd..39d842e 100644
--- a/src/app/shared/modules/tidy-table/order-by.pipe.spec.ts
+++ b/src/app/shared/modules/tidy-table/order-by.pipe.spec.ts
@@ -71,4 +71,14 @@ describe('OrderByPipe', () => {
]
expect(pipe.transform(data,undefined,false).length).toBe(2);
});
+
+ it('should test orderByComparator when orderby parmeter is number ', () => {
+ const pipe = new OrderBy();
+
+ let data =[
+ {'vnf-type': '311','vnfc-type':'vnfc1','artifact-name':'artf1'},
+ {'vnf-type':'316','vnfc-type':'vnfc2','artifact-name':'artf2'}
+ ]
+ pipe.transform(data,"vnf-type",false);
+ });
});