This commit is contained in:
Stéphane Campinas 2017-01-04 22:25:11 +00:00 committed by Thomas Neirynck
parent 64a3e72526
commit d1a42a487f
4 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@ describe('cli/serve/read_yaml_config', function () {
});
});
it('reads and merged mulitple config file', function () {
it('reads and merged multiple config file', function () {
const config = readYamlConfig([
fixture('one.yml'),
fixture('two.yml')

View file

@ -77,7 +77,7 @@ module.exports = function (program) {
.option(
'-c, --config <path>',
'Path to the config file, can be changed with the CONFIG_PATH environment variable as well. ' +
'Use mulitple --config args to include multiple config files.',
'Use multiple --config args to include multiple config files.',
configPathCollector,
[ getConfig() ]
)

View file

@ -36,7 +36,7 @@ describe('plugins/elasticsearch', function () {
}
describe(format('%s %s', options.method, options.url), function () {
it('should should return ' + statusCode, function (done) {
it('should return ' + statusCode, function (done) {
kbnTestServer.makeRequest(kbnServer, options, function (res) {
if (res.statusCode === statusCode) {
done();

View file

@ -89,7 +89,7 @@ describe('Events', function () {
});
});
it('should handle mulitple identical emits in the same tick', function () {
it('should handle multiple identical emits in the same tick', function () {
const obj = new Events();
const handler1 = sinon.stub();