Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NoQA] Skip the SearchPage test until its refactored #35992

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading