Skip to content

Commit 318ad9a

Browse files
committed
fix(tests): correct typo in hoverOnDevelopmentStatusPill method
1 parent 8f5a1af commit 318ad9a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/acceptance/roadmap-page/course-extension-ideas-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ module('Acceptance | roadmap-page | course-extension-ideas', function (hooks) {
8484
await roadmapPage.visitCourseExtensionIdeasTab();
8585

8686
let courseExtensionIdeaCard = roadmapPage.findCourseExtensionIdeaCard('Geospatial commands');
87-
await courseExtensionIdeaCard.hoverOndevelopmentStatusPill();
87+
await courseExtensionIdeaCard.hoverOnDevelopmentStatusPill();
8888

8989
assertTooltipContent(assert, {
9090
contentString: "We're currently building this challenge extension. Upvote this idea to be notified when it launches.",
9191
});
9292

9393
await courseExtensionIdeaCard.clickOnVoteButton();
94-
await courseExtensionIdeaCard.hoverOndevelopmentStatusPill();
94+
await courseExtensionIdeaCard.hoverOnDevelopmentStatusPill();
9595

9696
assertTooltipContent(assert, {
9797
contentString: "We're currently building this challenge extension. We'll notify you when it launches.",
@@ -100,7 +100,7 @@ module('Acceptance | roadmap-page | course-extension-ideas', function (hooks) {
100100
await courseExtensionIdeaCard.clickOnVoteButton();
101101

102102
courseExtensionIdeaCard = roadmapPage.findCourseExtensionIdeaCard('Persistence');
103-
await courseExtensionIdeaCard.hoverOndevelopmentStatusPill();
103+
await courseExtensionIdeaCard.hoverOnDevelopmentStatusPill();
104104

105105
assertTooltipContent(assert, {
106106
contentString: 'This challenge extension is now available! Visit the catalog to try it out.',

tests/acceptance/roadmap-page/course-ideas-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ module('Acceptance | roadmap-page | course-ideas', function (hooks) {
8585
await roadmapPage.visit();
8686

8787
let courseIdeaCard = roadmapPage.findCourseIdeaCard('Build your own Regex Parser');
88-
await courseIdeaCard.hoverOndevelopmentStatusPill();
88+
await courseIdeaCard.hoverOnDevelopmentStatusPill();
8989

9090
assertTooltipContent(assert, {
9191
contentString: "We're currently building this challenge. Upvote this idea to be notified when it launches.",
9292
});
9393

9494
await courseIdeaCard.clickOnVoteButton();
95-
await courseIdeaCard.hoverOndevelopmentStatusPill();
95+
await courseIdeaCard.hoverOnDevelopmentStatusPill();
9696

9797
assertTooltipContent(assert, {
9898
contentString: "We're currently building this challenge. We'll notify you when it launches.",
@@ -101,7 +101,7 @@ module('Acceptance | roadmap-page | course-ideas', function (hooks) {
101101
await courseIdeaCard.clickOnVoteButton();
102102

103103
courseIdeaCard = roadmapPage.findCourseIdeaCard('Build your own SQLite');
104-
await courseIdeaCard.hoverOndevelopmentStatusPill();
104+
await courseIdeaCard.hoverOnDevelopmentStatusPill();
105105

106106
assertTooltipContent(assert, {
107107
contentString: 'This challenge is now available! Visit the catalog to try it out.',

0 commit comments

Comments
 (0)