We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079de38 commit a15edcaCopy full SHA for a15edca
1 file changed
src/generators/metadata/utils/__tests__/slugger.test.mjs
@@ -80,16 +80,6 @@ describe('slug', () => {
80
});
81
82
83
- describe('cli flag anchor preservation', () => {
84
- it('preserves -- prefix for CLI flags', () => {
85
- assert.strictEqual(slug('--permission', identity), '--permission');
86
- });
87
-
88
- it('preserves -- prefix for multi-word CLI flags', () => {
89
- assert.strictEqual(slug('--allow-fs-read', identity), '--allow-fs-read');
90
91
92
93
describe('integration with github-slugger', () => {
94
it('lowercases and hyphenates a plain title', () => {
95
assert.strictEqual(slug('Hello World'), 'hello-world');
0 commit comments