blob: f0bcbb0f15a4a89729763fc26ea666c805d93d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import {CapitalizeAndFormatPipe} from "./capitalize-and-format.pipe";
import {TestBed} from "@angular/core/testing";
describe('Capitalize And Format Pipe', () => {
let capitalizeAndFormatPipe: CapitalizeAndFormatPipe;
beforeAll(done => (async () => {
TestBed.configureTestingModule({});
await TestBed.compileComponents();
capitalizeAndFormatPipe = new CapitalizeAndFormatPipe();
})().then(done).catch(done.fail));
test('Capitalize And Format Pipe should be defined', () => {
expect(capitalizeAndFormatPipe).toBeDefined();
});
test('Capitalize And Format Pipe : (UPPERCASE)', ()=> {
let result: string = capitalizeAndFormatPipe.transform('PENDING');
expect(result).toEqual('Pending');
});
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);
});
});
|