utsushiiro 5 лет назад
Родитель
Сommit
ab6c4fa597
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/growi-commons/src/test/util/path-utils.test.js

+ 2 - 2
packages/growi-commons/src/test/util/path-utils.test.js

@@ -5,11 +5,11 @@ const pathUtils = require('@src/util/path-utils');
 
 describe('page-utils', () => {
   describe('.normalizePath', () => {
-    test('should return root path with empty string', () => {
+    test('should return the root path with empty string', () => {
       expect(pathUtils.normalizePath('')).toBe('/');
     });
 
-    test('should return the root page as is', () => {
+    test('should return the root path as is', () => {
       expect(pathUtils.normalizePath('/')).toBe('/');
     });