Skip to content

Commit

Permalink
Merge pull request #28661 from Expensify/vit-skipFlakyTest
Browse files Browse the repository at this point in the history
[NoQA] Skip flaky google address tests
  • Loading branch information
AndrewGable authored Oct 2, 2023
2 parents 4d6a490 + da7c228 commit 4222416
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/GooglePlacesUtilsTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ describe('GooglePlacesUtilsTest', () => {
});
});
});
describe('getAddressComponents small data set timing', () => {
describe.skip('getAddressComponents small data set timing', () => {
it('should not be slow when executing', () => {
const startTime = performance.now();
for (let i = 100; i > 0; i--) {
Expand All @@ -180,7 +180,7 @@ describe('GooglePlacesUtilsTest', () => {
expect(executionTime).toBeLessThan(1.0);
});
});
describe('getAddressComponents big data set timing', () => {
describe.skip('getAddressComponents big data set timing', () => {
it('should not be slow when executing', () => {
const startTime = performance.now();
for (let i = 100; i > 0; i--) {
Expand Down

0 comments on commit 4222416

Please sign in to comment.