Fix test descriptions.

This commit is contained in:
saul 2023-03-29 11:15:44 +13:00
parent ce5e177813
commit 9c1af3deb8

View File

@ -53,13 +53,13 @@ const win32TestData = createTestData('\\')
})
describe('Path join', () => {
it('gives the same results as \'path\' on posix paths', () => {
it('gives the same results as \'path\' using join on posix paths', () => {
for (const data of posixTestData) {
equal(Path.join(...data), join(...data))
}
})
it('gives the same results as \'path\' in win32 paths', () => {
it('gives the same results as \'path\' using join on win32 paths', () => {
for (const data of win32TestData) {
equal(Path.join(...data), join(...data))
}