mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-06-07 06:36:38 +00:00
Fix test descriptions.
This commit is contained in:
parent
ce5e177813
commit
9c1af3deb8
@ -53,13 +53,13 @@ const win32TestData = createTestData('\\')
|
|||||||
})
|
})
|
||||||
|
|
||||||
describe('Path join', () => {
|
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) {
|
for (const data of posixTestData) {
|
||||||
equal(Path.join(...data), join(...data))
|
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) {
|
for (const data of win32TestData) {
|
||||||
equal(Path.join(...data), join(...data))
|
equal(Path.join(...data), join(...data))
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user