-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconstants.js
More file actions
26 lines (22 loc) · 791 Bytes
/
constants.js
File metadata and controls
26 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** constants with providers, languages and tests */
const AWS = 'aws';
const AZURE = 'azure';
const AZUREWINDOWS = 'azureWindows';
const GOOGLE = 'google';
const IBM = 'ibm';
const NODE = 'node';
const PYTHON = 'python';
const GO = 'go';
const DOTNET = 'dotnet';
const LATENCY = 'latency';
const FACTORS = 'factors';
const MATRIX = 'matrix';
const FILESYSTEM = 'filesystem';
const CUSTOM = 'custom';
const PROVIDERS = [AWS, AZURE, AZUREWINDOWS, GOOGLE, IBM];
const LANGUAGES = [NODE, PYTHON, GO, DOTNET];
const TESTS = [LATENCY, FACTORS, MATRIX, FILESYSTEM, CUSTOM];
module.exports = { AWS, AZURE, AZUREWINDOWS, GOOGLE, IBM,
NODE, PYTHON, GO, DOTNET,
LATENCY, FACTORS, MATRIX, FILESYSTEM, CUSTOM,
PROVIDERS, LANGUAGES, TESTS}