File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ import { getRandomTextString } from '../helpers/base-helper';
2
2
import { Constants } from './constants' ;
3
3
import { baseSelectors , selectors } from '../common/selectors' ;
4
4
5
+ const typescriptHeader =
6
+ Constants . commonConstantsData . typeScript . charAt ( 0 ) . toUpperCase ( ) +
7
+ Constants . commonConstantsData . typeScript . slice ( 1 ) ;
8
+
5
9
export class CommonTestData {
6
10
public static readonly multipleSizeStringsArray = [
7
11
getRandomTextString ( 10 ) ,
@@ -44,12 +48,12 @@ export class CommonTestData {
44
48
public static readonly commonTypeScriptAppsData = [
45
49
{
46
50
host : 3001 ,
47
- header : Constants . commonConstantsData . typeScript . charAt ( 0 ) . toUpperCase ( ) ,
51
+ header : typescriptHeader ,
48
52
appName : Constants . commonConstantsData . commonCountAppNames . app1 ,
49
53
} ,
50
54
{
51
55
host : 3002 ,
52
- header : Constants . commonConstantsData . typeScript . charAt ( 0 ) . toUpperCase ( ) ,
56
+ header : typescriptHeader ,
53
57
appName : Constants . commonConstantsData . commonCountAppNames . app2 ,
54
58
} ,
55
59
] ;
You can’t perform that action at this time.
0 commit comments