Skip to content

Commit

Permalink
Merge pull request #35992 from Expensify/vit-skipSearchPage
Browse files Browse the repository at this point in the history
[NoQA] Skip the SearchPage test until its refactored
  • Loading branch information
Julesssss authored Feb 7, 2024
2 parents 27904d1 + 527fcd1 commit cba008c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/perf-test/SearchPage.perf-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function SearchPageWrapper(args) {
);
}

test('[Search Page] should interact when text input changes', async () => {
test.skip('[Search Page] should interact when text input changes', async () => {
const {addListener} = TestHelper.createAddListenerMock();

const scenario = async () => {
Expand All @@ -130,7 +130,7 @@ test('[Search Page] should interact when text input changes', async () => {
.then(() => measurePerformance(<SearchPageWrapper navigation={navigation} />, {scenario}));
});

test('[Search Page] should render options list', async () => {
test.skip('[Search Page] should render options list', async () => {
const {triggerTransitionEnd, addListener} = TestHelper.createAddListenerMock();
const smallMockedPersonalDetails = getMockedPersonalDetails(5);

Expand All @@ -156,7 +156,7 @@ test('[Search Page] should render options list', async () => {
.then(() => measurePerformance(<SearchPageWrapper navigation={navigation} />, {scenario}));
});

test('[Search Page] should search in options list', async () => {
test.skip('[Search Page] should search in options list', async () => {
const {triggerTransitionEnd, addListener} = TestHelper.createAddListenerMock();

const scenario = async () => {
Expand All @@ -183,7 +183,7 @@ test('[Search Page] should search in options list', async () => {
.then(() => measurePerformance(<SearchPageWrapper navigation={navigation} />, {scenario}));
});

test('[Search Page] should click on list item', async () => {
test.skip('[Search Page] should click on list item', async () => {
const {triggerTransitionEnd, addListener} = TestHelper.createAddListenerMock();

const scenario = async () => {
Expand Down

0 comments on commit cba008c

Please sign in to comment.