Skip to content

Commit cc2e089

Browse files
style(syndicator-mastodon): consistent test names
1 parent 25991e4 commit cc2e089

File tree

1 file changed

+2
-2
lines changed
  • packages/syndicator-mastodon/test/unit

1 file changed

+2
-2
lines changed

packages/syndicator-mastodon/test/unit/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ describe("syndicator-mastodon/lib/utils", () => {
139139
assert.equal(result, "1234567890987654321");
140140
});
141141

142-
it("Convert HTML to status text", () => {
142+
it("Converts HTML to status text", () => {
143143
const result = htmlToStatusText(
144144
"<p>I ate a <em>cheese</em> sandwich, which was nice.</p>",
145145
"https://mastodon.example",
@@ -148,7 +148,7 @@ describe("syndicator-mastodon/lib/utils", () => {
148148
assert.equal(result, "I ate a cheese sandwich, which was nice.");
149149
});
150150

151-
it("Convert HTML to status text, appending last link href if present", () => {
151+
it("Converts HTML to status text, appending last link href if present", () => {
152152
const result = htmlToStatusText(
153153
'<p>Hello <a href="/hello">world</a>, hello <a href="https://moon.example">moon</a>.</p>',
154154
"https://mastodon.example",

0 commit comments

Comments
 (0)