mirror of
https://github.com/strapi/strapi.git
synced 2025-11-03 03:17:11 +00:00
fix tests
This commit is contained in:
parent
94308aa2bc
commit
fbd9ae5a50
@ -92,20 +92,17 @@ describe('Test type date', () => {
|
||||
});
|
||||
|
||||
test('Updating entry sets the right value and format JSON', async () => {
|
||||
const now = new Date(2018, 7, 5);
|
||||
|
||||
const res = await rq.post('/content-manager/collection-types/api::withdate.withdate', {
|
||||
body: {
|
||||
field: now,
|
||||
field: '2018-06-05',
|
||||
},
|
||||
});
|
||||
|
||||
const newDate = new Date(2017, 10, 23);
|
||||
const updateRes = await rq.put(
|
||||
`/content-manager/collection-types/api::withdate.withdate/${res.body.id}`,
|
||||
{
|
||||
body: {
|
||||
field: newDate,
|
||||
field: '2017-11-23',
|
||||
},
|
||||
}
|
||||
);
|
||||
|
||||
@ -123,9 +123,9 @@ describe('Folder', () => {
|
||||
children: { count: 1 },
|
||||
createdAt: expect.anything(),
|
||||
createdBy: {
|
||||
firstname: 'admin',
|
||||
firstname: expect.anything(),
|
||||
id: expect.anything(),
|
||||
lastname: 'admin',
|
||||
lastname: expect.anything(),
|
||||
username: null,
|
||||
},
|
||||
files: { count: 0 },
|
||||
@ -136,9 +136,9 @@ describe('Folder', () => {
|
||||
uid: expect.anything(),
|
||||
updatedAt: expect.anything(),
|
||||
updatedBy: {
|
||||
firstname: 'admin',
|
||||
firstname: expect.anything(),
|
||||
id: expect.anything(),
|
||||
lastname: 'admin',
|
||||
lastname: expect.anything(),
|
||||
username: null,
|
||||
},
|
||||
},
|
||||
@ -146,14 +146,12 @@ describe('Folder', () => {
|
||||
children: { count: 0 },
|
||||
createdAt: expect.anything(),
|
||||
createdBy: {
|
||||
firstname: 'admin',
|
||||
firstname: expect.anything(),
|
||||
id: expect.anything(),
|
||||
lastname: 'admin',
|
||||
lastname: expect.anything(),
|
||||
username: null,
|
||||
},
|
||||
files: {
|
||||
count: 0,
|
||||
},
|
||||
files: { count: 0 },
|
||||
id: expect.anything(),
|
||||
name: 'folder-2',
|
||||
parent: {
|
||||
@ -168,9 +166,9 @@ describe('Folder', () => {
|
||||
uid: expect.anything(),
|
||||
updatedAt: expect.anything(),
|
||||
updatedBy: {
|
||||
firstname: 'admin',
|
||||
firstname: expect.anything(),
|
||||
id: expect.anything(),
|
||||
lastname: 'admin',
|
||||
lastname: expect.anything(),
|
||||
username: null,
|
||||
},
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user