diff options
author | Ittay Stern <ittay.stern@att.com> | 2018-08-29 17:01:32 +0300 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-02-18 18:35:30 +0200 |
commit | 6f900cc45d7dd7f97430812b86b5c1d1693c8ae3 (patch) | |
tree | 936005c364dc5a7264d6304d4777c3d83494db22 /vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts | |
parent | 67d99f816cc583643c35193197594cf78d8ce60a (diff) |
merge from ecomp a88f0072 - Modern UI
Issue-ID: VID-378
Change-Id: Ibcb23dd27f550cf32ce2fe0239f0f496ae014ff6
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts')
-rw-r--r-- | vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts b/vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts index 84d2ff4b6..f0bcbb0f1 100644 --- a/vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts +++ b/vid-webpack-master/src/app/shared/pipes/capitalize/capitalize-and-format.pipe.spec.ts @@ -1,25 +1,33 @@ - import {CapitalizeAndFormatPipe} from "./capitalize-and-format.pipe"; +import {TestBed} from "@angular/core/testing"; describe('Capitalize And Format Pipe', () => { let capitalizeAndFormatPipe: CapitalizeAndFormatPipe; - beforeEach(() => { + beforeAll(done => (async () => { + TestBed.configureTestingModule({}); + await TestBed.compileComponents(); capitalizeAndFormatPipe = new CapitalizeAndFormatPipe(); - }); + })().then(done).catch(done.fail)); + - it('Capitalize And Format Pipe should be defined', () => { + test('Capitalize And Format Pipe should be defined', () => { expect(capitalizeAndFormatPipe).toBeDefined(); }); - it('Capitalize And Format Pipe : (UPPERCASE)', ()=> { + test('Capitalize And Format Pipe : (UPPERCASE)', ()=> { let result: string = capitalizeAndFormatPipe.transform('PENDING'); expect(result).toEqual('Pending'); }); - it('Capitalize And Format Pipe (UPPERCASE) and Underscore should replace by -', ()=> { + test('Capitalize And Format Pipe (UPPERCASE) and Underscore should replace by -', ()=> { let result: string = capitalizeAndFormatPipe.transform('IN_PROGRESS'); expect(result).toEqual('In-progress'); }); + test('Capitalize And Format Pipe (COMPLETED_WITH_ERRORS) and All Underscores should replace by -', ()=> { + let result: string = capitalizeAndFormatPipe.transform('COMPLETED_WITH_ERRORS'); + expect('Completed-with-errors').toEqual(result); + }); + }); |