1
- import os from 'os' ;
2
1
import { readFileSync } from 'fs' ;
3
2
import { normalize } from 'path' ;
4
3
import { metadataBorder } from '../../../src/constants' ;
@@ -86,8 +85,6 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
86
85
[ contributorFirst . email ] : contributorFirst ,
87
86
[ contributorSecond . email ] : contributorSecond ,
88
87
} ;
89
- const expectedAuthorString : string = replaceDoubleToSingleQuotes (
90
- JSON . stringify ( contributorFirst ) ) ;
91
88
const expectedContributorsArray : Contributor [ ] = Object . values ( expectedContributors ) ;
92
89
const expectedContributorsString : string =
93
90
replaceDoubleToSingleQuotes ( JSON . stringify ( expectedContributorsArray ) ) ;
@@ -102,7 +99,7 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
102
99
103
100
const splitedFiledContent = fileContent . split ( metadataBorder ) ;
104
101
splitedFiledContent [ 1 ] =
105
- `${ splitedFiledContent [ 1 ] } ${ os . EOL } author: ${ expectedAuthorString } ${ os . EOL } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
102
+ `${ splitedFiledContent [ 1 ] } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
106
103
const expectedFileContent = splitedFiledContent . join ( metadataBorder ) ;
107
104
expect ( updatedFileContent ) . toEqual ( expectedFileContent ) ;
108
105
} ) ;
@@ -119,8 +116,6 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
119
116
const expectedContributors : Contributors = {
120
117
[ contributorFirst . email ] : contributorFirst ,
121
118
} ;
122
- const expectedAuthorString : string = replaceDoubleToSingleQuotes (
123
- JSON . stringify ( contributorFirst ) ) ;
124
119
const expectedContributorsArray : Contributor [ ] = Object . values ( expectedContributors ) ;
125
120
const expectedContributorsString : string =
126
121
replaceDoubleToSingleQuotes ( JSON . stringify ( expectedContributorsArray ) ) ;
@@ -135,7 +130,7 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
135
130
136
131
const splitedFiledContent = fileContent . split ( metadataBorder ) ;
137
132
splitedFiledContent [ 1 ] =
138
- `${ splitedFiledContent [ 1 ] } ${ os . EOL } author: ${ expectedAuthorString } ${ os . EOL } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
133
+ `${ splitedFiledContent [ 1 ] } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
139
134
const expectedFileContent = splitedFiledContent . join ( metadataBorder ) ;
140
135
expect ( updatedFileContent ) . toEqual ( expectedFileContent ) ;
141
136
} ) ;
@@ -200,8 +195,7 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
200
195
`and includes files and ${ item . title } ` , async ( ) => {
201
196
const expectedContributorsString : string = replaceDoubleToSingleQuotes (
202
197
JSON . stringify ( item . expectedContributorsArray ) ) ;
203
- const expectedAuthorString : string = replaceDoubleToSingleQuotes (
204
- JSON . stringify ( contributorFirst ) ) ;
198
+
205
199
metaDataOptions . vcsConnector . getContributorsByPath = ( path : string ) => Promise . resolve ( {
206
200
contributors : getFileContributors ( path ) ,
207
201
hasIncludes : item . getHasIncludes ( path ) ,
@@ -213,7 +207,7 @@ describe('getContentWithUpdatedMetadata (Contributors)', () => {
213
207
214
208
const splitedFiledContent = fileContent . split ( metadataBorder ) ;
215
209
splitedFiledContent [ 1 ] =
216
- `${ splitedFiledContent [ 1 ] } ${ os . EOL } author: ${ expectedAuthorString } ${ os . EOL } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
210
+ `${ splitedFiledContent [ 1 ] } contributors: ${ expectedContributorsString } ${ сarriage } ` ;
217
211
const expectedFileContent = splitedFiledContent . join ( metadataBorder ) ;
218
212
expect ( updatedFileContent ) . toEqual ( expectedFileContent ) ;
219
213
} ) ;
0 commit comments