Skip to content

Commit 9ba5815

Browse files
committed
Merge branch 'master' of github.com:snyk/code-client into feat/add-tags-to-report-options
2 parents e50a5d7 + 0423539 commit 9ba5815

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)