fix: remove algolia indices and urls from translations (#41043)

This commit is contained in:
Kristofer Koishigawa
2021-02-11 03:41:51 +09:00
committed by GitHub
parent 149cf95310
commit 1e9dc8cea5
10 changed files with 115 additions and 37 deletions

View File

@ -57,22 +57,6 @@ describe('Navbar', () => {
}
);
it('Should be able to search on navbar search field', () => {
cy.get('.ais-SearchBox').within(() => {
cy.get('input').type('Learn');
});
cy.get('.ais-Hits-list')
.children()
.should('to.have.length.of.at.least', 1);
cy.get('.ais-SearchBox').within(() => {
cy.get('input').clear();
});
cy.get('div.ais-Hits').should('not.exist');
});
it('Should have a "Sign in" button', () => {
cy.contains("[data-test-label='landing-small-cta']", 'Sign in');
});