Create config file artillery websocket

This commit is contained in:
Gregoire Parant 2020-09-09 12:32:01 +02:00
parent 4226453364
commit d4fe59d154
5 changed files with 1389 additions and 18 deletions

15
back/socketioLoadTest.js Normal file
View file

@ -0,0 +1,15 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
'use strict';
module.exports = {
setYRandom
};
function setYRandom(context, events, done) {
context.vars.x = (883 + Math.round(Math.random() * 300));
context.vars.y = (270 + Math.round(Math.random() * 300));
return done();
}