Skip to content

Commit

Permalink
Fix test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ElenaStoeva committed Sep 8, 2023
1 parent 7eee9a1 commit 4e4ee30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
expect(url).to.contain(`/settings`);
});

describe('renders common settings', () => {
describe('renders observability settings', () => {
for (const settingId of OBSERVABILITY_PROJECT_SETTINGS) {
it('renders ' + settingId + ' edit field', async () => {
const fieldTestSubj = 'advancedSetting-editField-' + settingId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
expect(url).to.contain(`/settings`);
});

describe('renders common settings', () => {
describe('renders search settings', () => {
for (const settingId of SEARCH_PROJECT_SETTINGS) {
it('renders ' + settingId + ' edit field', async () => {
const fieldTestSubj = 'advancedSetting-editField-' + settingId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
expect(url).to.contain(`/settings`);
});

describe('renders common settings', () => {
describe('renders security settings', () => {
for (const settingId of SECURITY_PROJECT_SETTINGS) {
it('renders ' + settingId + ' edit field', async () => {
const fieldTestSubj = 'advancedSetting-editField-' + settingId;
Expand Down

0 comments on commit 4e4ee30

Please sign in to comment.