ci: Fix test exclusion list in combination with other exclusions (#9277)

This commit is contained in:
Manuel
2024-08-13 22:13:19 +02:00
committed by GitHub
parent 9fd707092e
commit 9552a4cbee
42 changed files with 281 additions and 293 deletions

View File

@@ -111,7 +111,7 @@ const setup = function () {
};
describe('Parse.Push', () => {
it_id('d1e591c4-2b21-466b-9ee2-5be467b6b771')('should properly send push', async () => {
it_id('d1e591c4-2b21-466b-9ee2-5be467b6b771')(it)('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_id('2a58e3c7-b6f3-4261-a384-6c893b2ac3f3')('should properly send push with lowercaseIncrement', async () => {
it_id('2a58e3c7-b6f3-4261-a384-6c893b2ac3f3')(it)('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_id('e21780b6-2cdd-467e-8013-81030f3288e9')('should not allow clients to query _PushStatus', async () => {
it_id('e21780b6-2cdd-467e-8013-81030f3288e9')(it)('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_id('924cf5f5-f684-4925-978a-e52c0c457366')('should allow master key to query _PushStatus', async () => {
it_id('924cf5f5-f684-4925-978a-e52c0c457366')(it)('should allow master key to query _PushStatus', async () => {
await setup();
const pushStatusId = await Parse.Push.send({
where: {