Skip to content

Commit 0423539

Browse files
authored
Merge pull request #241 from snyk/fix/update-coverage-test-expectations
fix(tests): update coverage test expectations to match new backend
2 parents 62096bb + 6724412 commit 0423539

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

tests/api.spec.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,19 +310,25 @@ describe('Requests to public API', () => {
310310
{
311311
files: 2,
312312
isSupported: true,
313-
lang: 'Java',
313+
lang: '.java',
314314
type: 'SUPPORTED',
315315
},
316316
{
317317
files: 1,
318318
isSupported: true,
319-
lang: 'C++',
319+
lang: '.Cpp',
320320
type: 'SUPPORTED',
321321
},
322322
{
323-
files: 7,
323+
files: 6,
324324
isSupported: true,
325-
lang: 'JavaScript',
325+
lang: '.js',
326+
type: 'SUPPORTED',
327+
},
328+
{
329+
files: 1,
330+
isSupported: true,
331+
lang: '.jsx',
326332
type: 'SUPPORTED',
327333
},
328334
]);

0 commit comments

Comments
 (0)