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

[Upgrade Assistant] Enable UA for 7.16 #109162

Merged
merged 2 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion x-pack/plugins/upgrade_assistant/common/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const configSchema = schema.object({
* In readonly mode, the user will not be able to perform any actions in the UI
* and will be presented with a message indicating as such.
*/
readonly: schema.boolean({ defaultValue: true }),
readonly: schema.boolean({ defaultValue: false }),
});

export type Config = TypeOf<typeof configSchema>;
3 changes: 2 additions & 1 deletion x-pack/test/accessibility/apps/upgrade_assistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const retry = getService('retry');

describe('Upgrade Assistant', () => {
// These tests need to be completely refactored to account for new UI
describe.skip('Upgrade Assistant', () => {
before(async () => {
await PageObjects.upgradeAssistant.navigateToPage();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export default function upgradeAssistantFunctionalTests({
const security = getService('security');
const testSubjects = getService('testSubjects');

// Updated for the hiding of the UA UI.
describe('Upgrade Checkup', function () {
// These tests need to be completely refactored to account for new UI
describe.skip('Upgrade Checkup', function () {
this.tags('skipFirefox');

before(async () => {
Expand Down