chore: fix prettier formatting, regenerate phase9 manifest, add missing config files (.env.example, .node-version, .nvmrc, CI workflow)
CI / test (push) Failing after 28s
CI / test (push) Failing after 28s
This commit is contained in:
@@ -10,13 +10,10 @@ describe('demo API content type validation', () => {
|
||||
expect(isApplicationJson(value)).toBe(true);
|
||||
});
|
||||
|
||||
it.each([
|
||||
null,
|
||||
'',
|
||||
'text/plain',
|
||||
'application/jsonp',
|
||||
'application/json-patch+json',
|
||||
])('rejects %s', (value) => {
|
||||
expect(isApplicationJson(value)).toBe(false);
|
||||
});
|
||||
it.each([null, '', 'text/plain', 'application/jsonp', 'application/json-patch+json'])(
|
||||
'rejects %s',
|
||||
(value) => {
|
||||
expect(isApplicationJson(value)).toBe(false);
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user