mirror of https://github.com/zulip/zulip.git
user-groups: Recognize single asterisk for group mentions.
The character combination of @* now begins a group mention, so this test is no longer valid.
This commit is contained in:
parent
c78846a274
commit
90994bccac
|
@ -210,8 +210,8 @@ var bugdown_data = JSON.parse(fs.readFileSync(path.join(__dirname, '../../zerver
|
||||||
expected: '<p>These @ @<em>**</em> are not mentions</p>'},
|
expected: '<p>These @ @<em>**</em> are not mentions</p>'},
|
||||||
{input: 'These # #**** are not mentions',
|
{input: 'These # #**** are not mentions',
|
||||||
expected: '<p>These # #<em>**</em> are not mentions</p>'},
|
expected: '<p>These # #<em>**</em> are not mentions</p>'},
|
||||||
{input: 'These @* @*** are not mentions',
|
{input: 'These @* are not mentions',
|
||||||
expected: '<p>These @* @*** are not mentions</p>'},
|
expected: '<p>These @* are not mentions</p>'},
|
||||||
{input: 'These #* #*** are also not mentions',
|
{input: 'These #* #*** are also not mentions',
|
||||||
expected: '<p>These #* #*** are also not mentions</p>'},
|
expected: '<p>These #* #*** are also not mentions</p>'},
|
||||||
{input: 'This is a #**Denmark** stream link',
|
{input: 'This is a #**Denmark** stream link',
|
||||||
|
|
Loading…
Reference in New Issue