Skip to content

Commit 60a6d51

Browse files
tighten up test names.
1 parent c250312 commit 60a6d51

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/ops.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("morphing operations", function () {
6161
);
6262
});
6363

64-
it("gracefully handling shifting a new softmatchable node into the front", function () {
64+
it("prepending a new softmatchable node onto the beginning", function () {
6565
assertOps(
6666
"<section><a>A</a><a>B</a></section>",
6767
"<section><a>New</a><a>A</a><a>B</a></section>",
@@ -78,7 +78,7 @@ describe("morphing operations", function () {
7878
);
7979
});
8080

81-
it("gracefully handling inserting a new softmatchable node into the middle", function () {
81+
it("inserting a new softmatchable node into the middle", function () {
8282
assertOps(
8383
"<section><a>A</a><a>B</a><a>C</a><a>D</a></section>",
8484
"<section><a>A</a><a>B</a><a>New</a><a>C</a><a>D</a></section>",
@@ -97,7 +97,7 @@ describe("morphing operations", function () {
9797
);
9898
});
9999

100-
it("gracefully handling pushing a new softmatchable node onto the end", function () {
100+
it("appending a new softmatchable node onto the end", function () {
101101
assertOps(
102102
"<section><a>A</a><a>B</a></section>",
103103
"<section><a>A</a><a>B</a><a>New</a></section>",
@@ -114,7 +114,7 @@ describe("morphing operations", function () {
114114
);
115115
});
116116

117-
it("gracefully handling removing a softmatchable node from the front", function () {
117+
it("removing a softmatchable node from the front", function () {
118118
assertOps(
119119
"<section><a>A</a><a>B</a><a>C</a></section>",
120120
"<section><a>B</a><a>C</a></section>",
@@ -131,7 +131,7 @@ describe("morphing operations", function () {
131131
);
132132
});
133133

134-
it("gracefully handling removing a softmatchable node from the middle", function () {
134+
it("removing a softmatchable node from the middle", function () {
135135
assertOps(
136136
"<section><a>A</a><a>B</a><a>C</a></section>",
137137
"<section><a>A</a><a>C</a></section>",
@@ -148,7 +148,7 @@ describe("morphing operations", function () {
148148
);
149149
});
150150

151-
it("gracefully handling removing a softmatchable node from the end", function () {
151+
it("removing a softmatchable node from the end", function () {
152152
assertOps(
153153
"<section><a>A</a><a>B</a><a>C</a></section>",
154154
"<section><a>A</a><a>B</a></section>",

0 commit comments

Comments
 (0)