Spelling (#72)

* spelling: check in

* spelling: compatibility

* spelling: definitely

* spelling: does not

* spelling: maintaining

* spelling: nonexistent

* spelling: precede

* spelling: response

* spelling: was not
This commit is contained in:
Josh Soref
2019-08-21 15:31:44 -04:00
committed by Danny McCormick
parent 7d605994f9
commit ad054c855d
7 changed files with 12 additions and 12 deletions

View File

@@ -88,7 +88,7 @@ describe('cp', () => {
})
it('copies directory into non-existing destination with -r', async () => {
const root: string = path.join(getTestTemp(), 'cp_with_-r_nonexisting_dest')
const root: string = path.join(getTestTemp(), 'cp_with_-r_nonexistent_dest')
const sourceFolder: string = path.join(root, 'cp_source')
const sourceFile: string = path.join(sourceFolder, 'cp_source_file')
@@ -245,7 +245,7 @@ describe('mv', () => {
it('moves directory into non-existing destination', async () => {
const root: string = path.join(
getTestTemp(),
' mv_with_-r_nonexisting_dest'
' mv_with_-r_nonexistent_dest'
)
const sourceFolder: string = path.join(root, ' mv_source')
const sourceFile: string = path.join(sourceFolder, ' mv_source_file')
@@ -321,7 +321,7 @@ describe('rmRF', () => {
await assertNotExists(testPath)
})
it('removes folder that doesnt exist with rmRF', async () => {
it('removes folder that does not exist with rmRF', async () => {
const testPath = path.join(getTestTemp(), 'testFolder')
await assertNotExists(testPath)