harper.js 0.25.0 → 0.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/harper.js +118 -118
- package/package.json +1 -1
- package/src/Linter.test.ts +1 -1
package/package.json
CHANGED
package/src/Linter.test.ts
CHANGED
|
@@ -98,7 +98,7 @@ for (const [linterName, Linter] of Object.entries(linters)) {
|
|
|
98
98
|
test(`${linterName} can make things title case`, async () => {
|
|
99
99
|
const linter = new Linter();
|
|
100
100
|
|
|
101
|
-
const titleCase = await linter.toTitleCase('
|
|
101
|
+
const titleCase = await linter.toTitleCase('this is a test for making titles');
|
|
102
102
|
|
|
103
103
|
expect(titleCase).toBe('This Is a Test for Making Titles');
|
|
104
104
|
});
|