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

@@ -16,7 +16,7 @@ const testEnvVars = {
// Set inputs
INPUT_MY_INPUT: 'val',
INPUT_MISSING: '',
'INPUT_SPECIAL_CHARS_\'\t"\\': '\'\t"\\ repsonse '
'INPUT_SPECIAL_CHARS_\'\t"\\': '\'\t"\\ response '
}
describe('@actions/core', () => {
@@ -101,7 +101,7 @@ describe('@actions/core', () => {
)
})
it('getInput doesnt throw on missing non-required input', () => {
it('getInput does not throw on missing non-required input', () => {
expect(core.getInput('missing', {required: false})).toBe('')
})
@@ -110,7 +110,7 @@ describe('@actions/core', () => {
})
it('getInput handles special characters', () => {
expect(core.getInput('special chars_\'\t"\\')).toBe('\'\t"\\ repsonse')
expect(core.getInput('special chars_\'\t"\\')).toBe('\'\t"\\ response')
})
it('setOutput produces the correct command', () => {