File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/jest-test-result/src/__tests__ Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 66 */
77
88import formatTestResults from '../formatTestResults' ;
9- import type { AggregatedResult , AssertionResult } from '../types' ;
9+ import type { AggregatedResult } from '../types' ;
1010
1111describe ( 'formatTestResults' , ( ) => {
1212 const assertion = {
1313 fullName : 'TestedModule#aMethod when some condition is met returns true' ,
1414 status : 'passed' ,
1515 title : 'returns true' ,
16- } as AssertionResult ;
16+ } ;
1717
1818 const results = {
1919 testResults : [
@@ -36,7 +36,7 @@ describe('formatTestResults', () => {
3636 fullName : 'Pending test' ,
3737 status : 'pending' ,
3838 title : 'is still pending' ,
39- } as AssertionResult ;
39+ } ;
4040
4141 const skippedResults = {
4242 testResults : [
@@ -62,7 +62,7 @@ describe('formatTestResults', () => {
6262 fullName : 'Focused test' ,
6363 status : 'focused' ,
6464 title : 'focused test' ,
65- } as AssertionResult ;
65+ } ;
6666
6767 const focusedResults = {
6868 testResults : [
You can’t perform that action at this time.
0 commit comments