test: Add test IDs (#9205)

This commit is contained in:
Manuel
2024-07-18 15:41:04 +02:00
committed by GitHub
parent 4b04c2222c
commit 901cff5edd
42 changed files with 302 additions and 282 deletions

View File

@@ -3650,7 +3650,7 @@ describe('schemas', () => {
});
});
it_exclude_dbs(['postgres'])('get indexes on startup', done => {
it_id('5d0926b2-2d31-459d-a2b1-23ecc32e72a3')(it_exclude_dbs(['postgres'])('get indexes on startup', done => {
const obj = new Parse.Object('TestObject');
obj
.save()
@@ -3671,9 +3671,9 @@ describe('schemas', () => {
done();
});
});
});
}));
it_exclude_dbs(['postgres'])('get compound indexes on startup', done => {
it_id('9f2ba51a-6a9c-4b25-9da0-51c82ac65f90')(it_exclude_dbs(['postgres'])('get compound indexes on startup', done => {
const obj = new Parse.Object('TestObject');
obj.set('subject', 'subject');
obj.set('comment', 'comment');
@@ -3706,9 +3706,9 @@ describe('schemas', () => {
done();
});
});
});
}));
it_exclude_dbs(['postgres'])('cannot update to duplicate value on unique index', done => {
it_id('cbd5d897-b938-43a4-8f5a-5d02dd2be9be')(it_exclude_dbs(['postgres'])('cannot update to duplicate value on unique index', done => {
const index = {
code: 1,
};
@@ -3737,6 +3737,6 @@ describe('schemas', () => {
expect(error.code).toEqual(Parse.Error.DUPLICATE_VALUE);
done();
});
});
}));
});
});