@@ -76,23 +76,23 @@ describe('main', () => {
76
76
expect ( tmpMockLog ) . toContain ( '7657 + 238947 = 246604\n' ) ;
77
77
mockLog . mockRestore ( ) ;
78
78
} ) ;
79
- test ( 'level should work. ' , async ( ) => {
79
+ test ( 'level should work' , async ( ) => {
80
80
const mockLog = mockProcessStdout ( ) ;
81
81
await main ( [ '' , '' , '' , '' , dataDir ] ) ;
82
82
const tmpMockLog = mockLog . mock . calls . join ( '' ) ;
83
83
expect ( tmpMockLog ) . toContain ( 'lets test some levelDB' ) ;
84
84
expect ( tmpMockLog ) . toContain ( 'hello Level!' ) ;
85
85
mockLog . mockRestore ( ) ;
86
86
} ) ;
87
- test ( 'Worker threads should work. ' , async ( ) => {
87
+ test ( 'worker threads should work' , async ( ) => {
88
88
const mockLog = mockProcessStdout ( ) ;
89
89
await main ( [ '' , '' , '' , '' , dataDir ] ) ;
90
90
const tmpMockLog = mockLog . mock . calls . join ( '' ) ;
91
91
expect ( tmpMockLog ) . toContain ( 'Lets test workers.' ) ;
92
92
expect ( tmpMockLog ) . toContain ( 'Hello Worker!' ) ;
93
93
mockLog . mockRestore ( ) ;
94
94
} ) ;
95
- test ( 'utp-native should work. ' , async ( ) => {
95
+ test ( 'utp-native should work' , async ( ) => {
96
96
const mockLog = mockProcessStdout ( ) ;
97
97
await main ( [ '' , '' , '' , '' , dataDir ] ) ;
98
98
const tmpMockLog = mockLog . mock . calls . join ( '' ) ;
0 commit comments