Skip to content

Commit

Permalink
Merge branch 'master' into ts-project-refs-es_ui/watcher-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine authored Jan 28, 2021
2 parents f2f8199 + 9480e2f commit 111709b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function wrapQueryStringInputInContext(testProps: any, storage?: any) {
);
}

describe('QueryStringInput', () => {
describe.skip('QueryStringInput', () => {
beforeEach(() => {
jest.clearAllMocks();
});
Expand All @@ -102,7 +102,7 @@ describe('QueryStringInput', () => {
await waitFor(() => getByText('KQL'));
});

it.skip('Should pass the query language to the language switcher', () => {
it('Should pass the query language to the language switcher', () => {
const component = mount(
wrapQueryStringInputInContext({
query: luceneQuery,
Expand All @@ -113,7 +113,7 @@ describe('QueryStringInput', () => {
expect(component.find(QueryLanguageSwitcher).prop('language')).toBe(luceneQuery.language);
});

it.skip('Should disable autoFocus on EuiTextArea when disableAutoFocus prop is true', () => {
it('Should disable autoFocus on EuiTextArea when disableAutoFocus prop is true', () => {
const component = mount(
wrapQueryStringInputInContext({
query: kqlQuery,
Expand Down

0 comments on commit 111709b

Please sign in to comment.