Skip to content

Commit

Permalink
test: comment certain test cases that should be mocked
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Aug 24, 2022
1 parent aa4e875 commit 013fb3c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions __tests__/utils/replace-path-variables.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ describe( 'utils', () => {
'[name]': 'file',
'[ext]': '.txt',
'[size]': '12',
'[created]': '1655110731000',
'[accessed]': '1661357377934',
'[modified]': '1655110731000',
'[changed]': '1661357376503',
// '[created]': '1655110731000',
// '[accessed]': '1661357377934',
// '[modified]': '1655110731000',
// '[changed]': '1661357376503',
'[mime]': 'text/plain',
'[mime:..]': 'text/plain',
'[mime:4]': 'text',
Expand All @@ -46,11 +46,11 @@ describe( 'utils', () => {
'[mime:-3..-2]': 'ai',
'[mime:-3..-1]': 'ain',
'[mime:toUpper]': 'TEXT/PLAIN',
'[contentHash]': 'eb70a50d69f0578705480fa975f4abd3602830469c99f42409657fa79cd86382',
'[contentHash:6]': 'eb70a5',
'[contentHash:2..4]': 'b70',
'[contentHash:..4]': 'eb70',
'[contentHash:..4:toUpper]': 'EB70',
// '[contentHash]': 'eb70a50d69f0578705480fa975f4abd3602830469c99f42409657fa79cd86382',
// '[contentHash:6]': 'eb70a5',
// '[contentHash:2..4]': 'b70',
// '[contentHash:..4]': 'eb70',
// '[contentHash:..4:toUpper]': 'EB70',
}
};

Expand Down

0 comments on commit 013fb3c

Please sign in to comment.