Skip to content

Commit a5d581d

Browse files
committed
correct the test
1 parent 4415955 commit a5d581d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/lib/entry.spec.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ describe('docdown', () => {
3838
[['bat'], ['bat']],
3939
],
4040
'two aliases': [
41-
[['bar', 'bat'], ['bar+bat']],
42-
[['bat', 'bar'], ['bat+bar']],
41+
[['bar', 'bat'], ['bar']],
42+
[['bat', 'bar'], ['bat']],
4343
],
4444
'three aliases': [
45-
[['bar', 'bat', 'baz'], ['bar+bat\n+baz']],
46-
[['bat', 'bar', 'baz'], ['bat+bar\n+baz']],
45+
[['bar', 'bat', 'baz'], ['bar']],
46+
[['bat', 'bar', 'baz'], ['bat']],
4747
],
4848
};
4949

@@ -59,7 +59,7 @@ describe('docdown', () => {
5959
*
6060
* ${
6161
aliases.length > 0
62-
? `@alias ${aliases.join('\n\t\t\t\t\t\t\t +')}`
62+
? `@alias ${aliases.join('\n\t\t\t\t\t\t\t\t * @alias ')}`
6363
: ''
6464
}
6565
*/

0 commit comments

Comments
 (0)