test: Add test IDs (#9205)
This commit is contained in:
@@ -111,7 +111,7 @@ const setup = function () {
|
||||
};
|
||||
|
||||
describe('Parse.Push', () => {
|
||||
it('should properly send push', async () => {
|
||||
it_id('d1e591c4-2b21-466b-9ee2-5be467b6b771')('should properly send push', async () => {
|
||||
const { sendToInstallationSpy } = await setup();
|
||||
const pushStatusId = await Parse.Push.send({
|
||||
where: {
|
||||
@@ -126,7 +126,7 @@ describe('Parse.Push', () => {
|
||||
expect(sendToInstallationSpy.calls.count()).toEqual(10);
|
||||
});
|
||||
|
||||
it('should properly send push with lowercaseIncrement', async () => {
|
||||
it_id('2a58e3c7-b6f3-4261-a384-6c893b2ac3f3')('should properly send push with lowercaseIncrement', async () => {
|
||||
await setup();
|
||||
const pushStatusId = await Parse.Push.send({
|
||||
where: {
|
||||
@@ -140,7 +140,7 @@ describe('Parse.Push', () => {
|
||||
await pushCompleted(pushStatusId);
|
||||
});
|
||||
|
||||
it('should not allow clients to query _PushStatus', async () => {
|
||||
it_id('e21780b6-2cdd-467e-8013-81030f3288e9')('should not allow clients to query _PushStatus', async () => {
|
||||
await setup();
|
||||
const pushStatusId = await Parse.Push.send({
|
||||
where: {
|
||||
@@ -166,7 +166,7 @@ describe('Parse.Push', () => {
|
||||
}
|
||||
});
|
||||
|
||||
it('should allow master key to query _PushStatus', async () => {
|
||||
it_id('924cf5f5-f684-4925-978a-e52c0c457366')('should allow master key to query _PushStatus', async () => {
|
||||
await setup();
|
||||
const pushStatusId = await Parse.Push.send({
|
||||
where: {
|
||||
|
||||
Reference in New Issue
Block a user