mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
14797cbcff
Signed-off-by: limepotato <limepot@protonmail.ch>
50 lines
893 B
TypeScript
50 lines
893 B
TypeScript
import * as assert from "assert";
|
|
|
|
import { parse } from "@transfem-org/sfm-js";
|
|
import { extractMentions } from "../src/misc/extract-mentions.js";
|
|
|
|
describe("Extract mentions", () => {
|
|
it("simple", () => {
|
|
const ast = parse("@foo @bar @baz")!;
|
|
const mentions = extractMentions(ast);
|
|
assert.deepStrictEqual(mentions, [
|
|
{
|
|
username: "foo",
|
|
acct: "@foo",
|
|
host: null,
|
|
},
|
|
{
|
|
username: "bar",
|
|
acct: "@bar",
|
|
host: null,
|
|
},
|
|
{
|
|
username: "baz",
|
|
acct: "@baz",
|
|
host: null,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("nested", () => {
|
|
const ast = parse("@foo **@bar** @baz")!;
|
|
const mentions = extractMentions(ast);
|
|
assert.deepStrictEqual(mentions, [
|
|
{
|
|
username: "foo",
|
|
acct: "@foo",
|
|
host: null,
|
|
},
|
|
{
|
|
username: "bar",
|
|
acct: "@bar",
|
|
host: null,
|
|
},
|
|
{
|
|
username: "baz",
|
|
acct: "@baz",
|
|
host: null,
|
|
},
|
|
]);
|
|
});
|
|
});
|