Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runAllTestsInAffectedTestFile: true breaks value explorer when using debug / test story #2700

Closed
alexanderlamb opened this issue May 12, 2021 · 1 comment
Assignees
Labels

Comments

@alexanderlamb
Copy link

alexanderlamb commented May 12, 2021

When I set runAllTestsInAffectedTestFile: true in wallaby.conf.js debug mode crashes when trying to inspect a variable

I have a series of tests that depend on eachother. Some of these tests generate random IDs that need to be passed on to future tests to function.

When running these tests with runAllTestsInAffectedTestFile: false, everything works as expected. Debugger works great, I can review variable values, move back and forth etc. However, because of the dependencies between tests, when Wallaby reruns a single test at a time, the state gets out of sync, the expected IDs are wrong and tests start to fail.

I enabled runAllTestsInAffectedTestFile: true to combat this problem. It's my understanding that this will force Wallaby to rerun all tests in the file. On the surface this works great. I can make changes to the code, all tests are re-run, the IDs are updated correctly and everything passes.

The problem comes when I try to use debug to view the value of certain variables. Wallaby seems like it starts processing and after about 5-10 seconds debug mode exits. I can't find any explicit errors in the logs. I've removed tests, extended timeout values, reduced all workers to 1 but the only thing I can find that changes this behavior is the runAllTestsInAffectedTestFile flag.

I am running my dev environment inside a Docker Container with VSCode on Windows 10.

Wallaby diagnostics report

{
  editorVersion: '1.56.1',
  pluginVersion: '1.0.289',
  editorType: 'VSCode',
  osVersion: 'linux 5.10.25-linuxkit',
  nodeVersion: 'v14.16.1',
  coreVersion: '1.0.1068',
  checksum: 'MTc3N2QwNGQ4ZWY4ODkxZWE4NDY5NjMxOWQ1OTI1YTYsMTYyMTk4NzIwMDAwMCwx',
  config: {
    files: [
      { pattern: 'src/**/*.js', ignore: false, trigger: true, load: true, instrument: true, order: 1 },
      { pattern: 'test/data/**/*.json', ignore: false, trigger: true, load: true, instrument: true, order: 2 },
      { pattern: 'test/lib/**/*.js', ignore: false, trigger: true, load: true, instrument: true, order: 3 },
      { pattern: '../models/schema/*.schema.json', ignore: false, trigger: true, load: true, instrument: true, order: 4 }
    ],
    tests: [ { pattern: 'test/**/*.test.js', ignore: false, trigger: true, load: true, test: true, order: 5 } ],
    testFramework: { version: 'mocha@2.1.0', configurator: 'mocha@2.1.0', reporter: 'mocha@2.1.0', starter: 'mocha@2.1.0' },
    runAllTestsInAffectedTestFile: true,
    env: { type: 'node', params: {}, runner: '/usr/local/bin/node', viewportSize: { width: 800, height: 600 }, options: { width: 800, height: 600 }, bundle: true },
    debug: true,
    trace: true,
    workers: { initial: 1, regular: 1, restart: true, recycle: true },
    diagnostics: {},
    filesWithNoCoverageCalculated: [],
    updateNoMoreThanOneSnapshotPerTestFileRun: false,
    addModifiedTestFileToExclusiveTestRun: true,
    compilers: { '**/*.?(lit)coffee?(.md)': [Function (anonymous)] },
    preprocessors: {},
    maxConsoleMessagesPerTest: 100,
    autoConsoleLog: true,
    delays: { run: 0, edit: 100, update: 0 },
    teardown: undefined,
    hints: {
      ignoreCoverage: '__REGEXP /ignore coverage|istanbul ignore/',
      ignoreCoverageForFile: '__REGEXP /ignore file coverage/',
      commentAutoLog: '?',
      testFileSelection: { include: '__REGEXP /file\\.only/', exclude: '__REGEXP /file\\.skip/' }
    },
    automaticTestFileSelection: true,
    runSelectedTestsOnly: false,
    mapConsoleMessagesStackTrace: false,
    extensions: {},
    reportUnhandledPromises: true,
    slowTestThreshold: 75,
    lowCoverageThreshold: 80,
    loose: undefined,
    symlinkNodeModules: undefined,
    configCode: 'module.exports = function(wallaby) {\r\n' +
      "  process.env.NODE_ENV = 'test'\r\n" +
      '  return {\r\n' +
      '    files: [\r\n' +
      "      'src/**/*.js',\r\n" +
      "      'test/data/**/*.json',\r\n" +
      "      'test/lib/**/*.js',\r\n" +
      "      '../models/schema/*.schema.json'\r\n" +
      '    ],\r\n' +
      "    tests: ['test/**/*.test.js'],\r\n" +
      '    setup: function(w) {\r\n' +
      '      var mocha = w.testFramework\r\n' +
      '      mocha.timeout(10 * 1000) // 10 seconds\r\n' +
      '    },\r\n' +
      "    testFramework: 'mocha',\r\n" +
      '    runAllTestsInAffectedTestFile: true,\r\n' +
      '    env: {\r\n' +
      "      type: 'node'\r\n" +
      '    },\r\n' +
      '    debug: true,\r\n' +
      '    trace: true,\r\n' +
      '    workers: {\r\n' +
      '      initial: 1,\r\n' +
      '      regular: 1,\r\n' +
      '      restart: true,\r\n' +
      '      recycle: true\r\n' +
      '    }\r\n' +
      '  }\r\n' +
      '}\r\n'
  },
  packageJSON: {
    dependencies: {
      ajv: '6.5.2',
      'ajv-keywords': '^3.4.0',
      'ajv-merge-patch': '4.1.0',
      'arise-schema-json': 'git+https://:x-oauth-basicarise-schema-json.git#v0.0.19',
      'chai-things': '^0.2.0',
      'dinero.js': '^1.6.0',
      'fabric-shim': '^2.2.1',
      geolib: '^2.0.24',
      'graphql-parse-fields': '^1.2.0',
      lodash: '^4.17.11',
      moment: '^2.20.1',
      'moment-range': '^4.0.2',
      'semver-compare': '1.0.0',
      sleep: '^6.0.0',
      uuid: '^3.1.0'
    },
    devDependencies: {
      'babel-eslint': '^10.0.1',
      chai: '^4.2.0',
      'chai-like': '^1.1.1',
      eslint: '^5.15.2',
      'eslint-config-prettier': '^4.1.0',
      'eslint-config-standard': '^12.0.0',
      'eslint-friendly-formatter': '^4.0.1',
      'eslint-loader': '^2.1.2',
      'eslint-plugin-import': '^2.16.0',
      'eslint-plugin-jest': '^22.4.1',
      'eslint-plugin-node': '^8.0.1',
      'eslint-plugin-prettier': '^3.0.1',
      'eslint-plugin-promise': '^4.0.1',
      'eslint-plugin-standard': '^4.0.0',
      'fabric-mock-stub': 'github:fabric-mock-stub#master',
      forever: '^0.15.3',
      husky: '^1.3.1',
      'lint-staged': '^8.1.5',
      mocha: '^6.1.4',
      nodemon: '^1.13.3',
      prettier: '^1.16.4'
    }
  },
  fs: { numberOfFiles: 76 },
  debug: [
    '2021-05-12T21:34:19.413Z project Wallaby Node version: v14.16.1\n',
    '2021-05-12T21:34:19.414Z project Wallaby config: <rootDir>/wallaby.conf.js\n',
    '2021-05-12T21:34:19.665Z project File cache: <homeDir>/.vscode-server/extensions/wallabyjs.wallaby-vscode-1.0.289/projects/98c996137e87cfa2\n',
    '2021-05-12T21:34:19.894Z uiService Listening port 51235\n',
    '2021-05-12T21:34:19.922Z project Config file change detected, invalidating local cache\n',
    '2021-05-12T21:34:19.985Z workers Parallelism for initial run: 1, for regular run: 1\n',
    '2021-05-12T21:34:19.986Z workers Starting run worker instance #0\n',
    '2021-05-12T21:34:19.987Z workers Web server is listening at 42777\n',
    '2021-05-12T21:34:19.988Z project File cache requires some updates, waiting required files from IDE\n',
    '2021-05-12T21:34:21.115Z workers Started run worker instance (delayed) #0\n',
    '2021-05-12T21:34:24.557Z project Stopping process pool\n',
    '2021-05-12T21:34:24.565Z project Running postprocessor\n',
    '2021-05-12T21:34:24.580Z postprocessor New TypeScript language service is required\n',
    "2021-05-12T21:34:24.587Z postprocessor TypeScript postprocessor will be removed because in 76 project files none were found by patterns: [ '**/*.ts?(x)' ]\n",
    '2021-05-12T21:34:24.591Z project Postprocessor execution finished\n',
    '2021-05-12T21:34:24.591Z project Postprocessor is removed as requested by itself\n',
    '2021-05-12T21:34:24.592Z project Test run started; run priority: 3\n',
    '2021-05-12T21:34:24.593Z project Running all tests\n',
    '2021-05-12T21:34:24.602Z workers Starting test run, priority: 3\n',
    '2021-05-12T21:34:24.603Z nodeRunner Starting sandbox [worker #0, session #0ysc0]\n',
    '2021-05-12T21:34:24.605Z nodeRunner Preparing sandbox [worker #0, session #0ysc0]\n',
    '2021-05-12T21:34:24.606Z nodeRunner Prepared sandbox [worker #0, session #0ysc0]\n',
    '2021-05-12T21:34:24.606Z workers [worker #0, session #0ysc0] Running tests in sandbox\n',
    '2021-05-12T21:34:27.647Z workers [0ysc0] Loaded 75 test(s)\n',
    '2021-05-12T21:34:28.273Z workers [0ysc0] Test executed: Create Complete Partner 1\n',
    '2021-05-12T21:34:28.295Z workers [0ysc0] Test executed: Update Complete Partner 1\n',
    '2021-05-12T21:34:28.316Z workers [0ysc0] Test executed: Create Minimal Partner 2\n',
    '2021-05-12T21:34:28.336Z workers [0ysc0] Test executed: Get Partner\n',
    '2021-05-12T21:34:29.805Z workers [0ysc0] Test executed: Patch Minimal Partner 2 - Invalid CategoryTag\n',
    '2021-05-12T21:34:29.956Z workers [0ysc0] Test executed: Patch Minimal Partner 2\n',
    '2021-05-12T21:34:30.589Z workers [0ysc0] Test executed: Get All Partner List\n',
    '2021-05-12T21:34:30.618Z workers [0ysc0] Test executed: Search Partners by Name\n',
    '2021-05-12T21:34:30.629Z workers [0ysc0] Test executed: Search Partners by Category Tag - Match All\n',
    '2021-05-12T21:34:30.657Z workers [0ysc0] Test executed: Search Partners by Category Tag - Match One\n',
    '2021-05-12T21:34:30.690Z workers [0ysc0] Test executed: Search Partners by Category Tag and Name - Match\n',
    '2021-05-12T21:34:30.701Z workers [0ysc0] Test executed: Search Partners by Category Tag and Name - No Match\n',
    '2021-05-12T21:34:30.714Z workers [0ysc0] Test executed: Create Complete Property 1\n',
    '2021-05-12T21:34:30.727Z workers [0ysc0] Test executed: Create Complete SpaceType1 for Property 1\n',
    '2021-05-12T21:34:30.744Z workers [0ysc0] Test executed: Create Complete SpaceType2 for Property 1\n',
    '2021-05-12T21:34:30.845Z workers [0ysc0] Test executed: Create Complete RatePlan for Property 1\n',
    '2021-05-12T21:34:30.869Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType1 at Property 1\n',
    '2021-05-12T21:34:30.887Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType2 at Property 1\n',
    '2021-05-12T21:34:30.915Z workers [0ysc0] Test executed: Create Complete Property 2\n',
    '2021-05-12T21:34:30.937Z workers [0ysc0] Test executed: Create Complete SpaceType3 for Property 2\n',
    '2021-05-12T21:34:30.949Z workers [0ysc0] Test executed: Create Complete SpaceType4 for Property 2\n',
    '2021-05-12T21:34:30.958Z workers [0ysc0] Test executed: Create Complete RatePlan for Property 2\n',
    '2021-05-12T21:34:31.144Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType3 at Property 2\n',
    '2021-05-12T21:34:31.160Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - SpaceType not at Property\n',
    '2021-05-12T21:34:31.173Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - RatePlan not at Property\n',
    '2021-05-12T21:34:31.194Z workers [0ysc0] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - Success\n',
    '2021-05-12T21:34:31.206Z workers [0ysc0] Test executed: Get Property\n',
    '2021-05-12T21:34:31.250Z workers [0ysc0] Test executed: Get All Property List\n',
    '2021-05-12T21:34:31.340Z workers [0ysc0] Test executed: Get All Filtered Property List\n',
    '2021-05-12T21:34:31.388Z workers [0ysc0] Test executed: Get One Filtered Property List\n',
    '2021-05-12T21:34:31.439Z workers [0ysc0] Test executed: Search Properties by Location - Property 1\n',
    '2021-05-12T21:34:31.483Z workers [0ysc0] Test executed: Search Properties by Location - Distance - No Results\n',
    '2021-05-12T21:34:31.574Z workers [0ysc0] Test executed: Search Properties by Location - Latitude - No Results\n',
    "2021-05-12T21:34:31.707Z workers [0ysc0] Test executed: Update Property 1 - Property Doesn't Exist\n",
    '2021-05-12T21:34:31.716Z workers [0ysc0] Test executed: Update Property 1 - Missing Settings Fields\n',
    '2021-05-12T21:34:31.720Z workers [0ysc0] Test executed: Update Property 1 - Location\n',
    '2021-05-12T21:34:31.723Z workers [0ysc0] Test executed: Patch Property 1 - PartnerMemberships\n',
    '2021-05-12T21:34:31.726Z workers [0ysc0] Test executed: Search Properties by Location - Updated Property 1\n',
    '2021-05-12T21:34:31.730Z workers [0ysc0] Test executed: Patch Property 1 - Location\n',
    '2021-05-12T21:34:31.733Z workers [0ysc0] Test executed: Patch Property 1 - Amenities\n',
    '2021-05-12T21:34:31.740Z workers [0ysc0] Test executed: Patch Property 2 - Rejected Amenities\n',
    '2021-05-12T21:34:31.742Z workers [0ysc0] Test executed: Patch Property 2 - Roles\n',
    '2021-05-12T21:34:31.745Z workers [0ysc0] Test executed: Search Properties by Location - Patched Property 1\n',
    '2021-05-12T21:34:31.747Z workers [0ysc0] Test executed: Filter SpaceType for Property 1\n',
    '2021-05-12T21:34:31.751Z workers [0ysc0] Test executed: Filter List of SpaceTypes for Property 1 - 1 Result\n',
    '2021-05-12T21:34:31.754Z workers [0ysc0] Test executed: Filter List of SpaceTypes for Property 1 - 2 Results\n',
    '2021-05-12T21:34:31.759Z workers [0ysc0] Test executed: Filter List of SpaceTypes for Property 1 - By PropertyId\n',
    '2021-05-12T21:34:31.768Z workers [0ysc0] Test executed: Filter List of SpaceTypes for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:34:31.771Z workers [0ysc0] Test executed: Update Complete SpaceType for Property 1 - Wrong Property\n',
    '2021-05-12T21:34:31.775Z workers [0ysc0] Test executed: Update Complete SpaceType for Property 1 - Missing Name\n',
    '2021-05-12T21:34:31.780Z workers [0ysc0] Test executed: Update Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:34:31.783Z workers [0ysc0] Test executed: Patch Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:34:31.786Z workers [0ysc0] Test executed: Filter RatePlan for Property 1\n',
    '2021-05-12T21:34:31.790Z workers [0ysc0] Test executed: Find RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:34:31.795Z workers [0ysc0] Test executed: Filter List of RatePlans for Property 1\n',
    '2021-05-12T21:34:31.797Z workers [0ysc0] Test executed: Filter List of RatePlans for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:34:31.804Z workers [0ysc0] Test executed: Filter List of RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:34:31.807Z workers [0ysc0] Test executed: Update Complete RatePlan for Property 1 - Wrong Property\n',
    '2021-05-12T21:34:31.811Z workers [0ysc0] Test executed: Update Complete RatePlan for Property 1 - Missing Name\n',
    '2021-05-12T21:34:31.814Z workers [0ysc0] Test executed: Update Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:34:31.823Z workers [0ysc0] Test executed: Patch Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:34:31.826Z workers [0ysc0] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id\n',
    '2021-05-12T21:34:31.829Z workers [0ysc0] Test executed: Find RatePlans for Property 1 - Using SpaceType2 Id\n',
    '2021-05-12T21:34:31.832Z workers [0ysc0] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id\n',
    '2021-05-12T21:34:31.835Z workers [0ysc0] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id without Property Id\n',
    '2021-05-12T21:34:31.838Z workers [0ysc0] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id\n',
    '2021-05-12T21:34:31.841Z workers [0ysc0] Test executed: Filter SpaceTypeRate for Property 1 By SpaceType.id\n',
    '2021-05-12T21:34:31.844Z workers [0ysc0] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:34:31.848Z workers [0ysc0] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id - Wrong Property.id\n',
    '2021-05-12T21:34:31.854Z workers [0ysc0] Test executed: Filter SpaceTypeRate1 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:34:31.858Z workers [0ysc0] Test executed: Filter SpaceTypeRate2 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:34:31.864Z workers [0ysc0] Test executed: Update Complete SpaceTypeRate for Property 1 using RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:34:31.869Z workers [0ysc0] Test executed: Update Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:34:31.876Z workers [0ysc0] Test executed: Patch Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:34:31.883Z workers [0ysc0] Test executed: Patch SpaceTypeRatePeriods for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:34:31.915Z workers [0ysc0] Run 75 test(s), skipped 0 test(s)\n',
    '2021-05-12T21:34:31.918Z workers [0ysc0] Sandbox is responsive, closing it\n',
    '2021-05-12T21:34:31.919Z workers Starting run worker instance #0\n',
    '2021-05-12T21:34:31.922Z project Test run finished\n',
    '2021-05-12T21:34:31.924Z project Processed console.log entries\n',
    '2021-05-12T21:34:31.925Z project Processed loading sequences\n',
    '2021-05-12T21:34:31.930Z project Processed executed tests\n',
    '2021-05-12T21:34:31.979Z project Processed code coverage\n',
    '2021-05-12T21:34:32.292Z project Test run result processed and sent to IDE\n',
    '2021-05-12T21:34:32.968Z workers Started run worker instance (delayed) #0\n',
    '2021-05-12T21:35:12.098Z project Test run started; run priority: 1\n',
    '2021-05-12T21:35:12.098Z testTask Test files from affected: 0, from deleted or manually requested: 1, from recently changed: 0, from loaded by: 0, from failing: 0\n',
    '2021-05-12T21:35:12.102Z workers Starting test run, priority: 1\n',
    '2021-05-12T21:35:12.103Z nodeRunner Starting sandbox [worker #0, session #n4bju]\n',
    '2021-05-12T21:35:12.103Z nodeRunner Preparing sandbox [worker #0, session #n4bju]\n',
    '2021-05-12T21:35:12.103Z nodeRunner Prepared sandbox [worker #0, session #n4bju]\n',
    '2021-05-12T21:35:12.104Z workers [worker #0, session #n4bju] Running tests in sandbox\n',
    '2021-05-12T21:35:15.157Z uiService UI client connected\n',
    '2021-05-12T21:35:15.160Z uiService Outgoing message ui:handshake\n',
    '2021-05-12T21:35:15.178Z uiService Incoming message ui:tests:resultsRequested\n',
    '2021-05-12T21:35:15.209Z uiService Outgoing message ui:tests:allResultsUpdated\n',
    '2021-05-12T21:35:15.223Z uiService Incoming message ui:start\n',
    '2021-05-12T21:35:15.225Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:35:15.234Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:15.561Z workers [n4bju] Loaded 75 test(s)\n',
    '2021-05-12T21:35:16.116Z uiService UI client connected\n',
    '2021-05-12T21:35:16.116Z uiService Outgoing message ui:handshake\n',
    '2021-05-12T21:35:16.130Z uiService Incoming message ui:tests:resultsRequested\n',
    '2021-05-12T21:35:16.144Z uiService Outgoing message ui:tests:allResultsUpdated\n',
    '2021-05-12T21:35:16.153Z uiService Incoming message ui:start\n',
    '2021-05-12T21:35:16.153Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:35:16.157Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:16.338Z workers [n4bju] Test executed: Create Complete Partner 1\n',
    '2021-05-12T21:35:16.371Z workers [n4bju] Test executed: Update Complete Partner 1\n',
    '2021-05-12T21:35:16.403Z workers [n4bju] Test executed: Create Minimal Partner 2\n',
    '2021-05-12T21:35:16.432Z workers [n4bju] Test executed: Get Partner\n',
    '2021-05-12T21:35:17.051Z uiService UI client connected\n',
    '2021-05-12T21:35:17.055Z uiService Outgoing message ui:handshake\n',
    '2021-05-12T21:35:17.070Z uiService Incoming message ui:tests:resultsRequested\n',
    '2021-05-12T21:35:17.093Z uiService Outgoing message ui:tests:allResultsUpdated\n',
    '2021-05-12T21:35:17.113Z uiService Incoming message ui:start\n',
    '2021-05-12T21:35:17.115Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:35:17.120Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:18.080Z workers [n4bju] Test executed: Patch Minimal Partner 2 - Invalid CategoryTag\n',
    '2021-05-12T21:35:18.228Z workers [n4bju] Test executed: Patch Minimal Partner 2\n',
    '2021-05-12T21:35:18.918Z workers [n4bju] Test executed: Get All Partner List\n',
    '2021-05-12T21:35:18.953Z workers [n4bju] Test executed: Search Partners by Name\n',
    '2021-05-12T21:35:18.969Z workers [n4bju] Test executed: Search Partners by Category Tag - Match All\n',
    '2021-05-12T21:35:18.982Z workers [n4bju] Test executed: Search Partners by Category Tag - Match One\n',
    '2021-05-12T21:35:19.012Z workers [n4bju] Test executed: Search Partners by Category Tag and Name - Match\n',
    '2021-05-12T21:35:19.047Z workers [n4bju] Test executed: Search Partners by Category Tag and Name - No Match\n',
    '2021-05-12T21:35:19.062Z workers [n4bju] Test executed: Create Complete Property 1\n',
    '2021-05-12T21:35:19.074Z workers [n4bju] Test executed: Create Complete SpaceType1 for Property 1\n',
    '2021-05-12T21:35:19.088Z workers [n4bju] Test executed: Create Complete SpaceType2 for Property 1\n',
    '2021-05-12T21:35:19.181Z workers [n4bju] Test executed: Create Complete RatePlan for Property 1\n',
    '2021-05-12T21:35:19.201Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType1 at Property 1\n',
    '2021-05-12T21:35:19.219Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType2 at Property 1\n',
    '2021-05-12T21:35:19.240Z workers [n4bju] Test executed: Create Complete Property 2\n',
    '2021-05-12T21:35:19.266Z workers [n4bju] Test executed: Create Complete SpaceType3 for Property 2\n',
    '2021-05-12T21:35:19.287Z workers [n4bju] Test executed: Create Complete SpaceType4 for Property 2\n',
    '2021-05-12T21:35:19.296Z workers [n4bju] Test executed: Create Complete RatePlan for Property 2\n',
    '2021-05-12T21:35:19.454Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType3 at Property 2\n',
    '2021-05-12T21:35:19.471Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - SpaceType not at Property\n',
    '2021-05-12T21:35:19.485Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - RatePlan not at Property\n',
    '2021-05-12T21:35:19.512Z workers [n4bju] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - Success\n',
    '2021-05-12T21:35:19.525Z workers [n4bju] Test executed: Get Property\n',
    '2021-05-12T21:35:19.561Z workers [n4bju] Test executed: Get All Property List\n',
    '2021-05-12T21:35:19.643Z workers [n4bju] Test executed: Get All Filtered Property List\n',
    '2021-05-12T21:35:19.690Z workers [n4bju] Test executed: Get One Filtered Property List\n',
    '2021-05-12T21:35:19.727Z workers [n4bju] Test executed: Search Properties by Location - Property 1\n',
    '2021-05-12T21:35:19.769Z workers [n4bju] Test executed: Search Properties by Location - Distance - No Results\n',
    '2021-05-12T21:35:19.855Z workers [n4bju] Test executed: Search Properties by Location - Latitude - No Results\n',
    "2021-05-12T21:35:20.065Z workers [n4bju] Test executed: Update Property 1 - Property Doesn't Exist\n",
    '2021-05-12T21:35:20.071Z workers [n4bju] Test executed: Update Property 1 - Missing Settings Fields\n',
    '2021-05-12T21:35:20.076Z workers [n4bju] Test executed: Update Property 1 - Location\n',
    '2021-05-12T21:35:20.080Z workers [n4bju] Test executed: Patch Property 1 - PartnerMemberships\n',
    '2021-05-12T21:35:20.085Z workers [n4bju] Test executed: Search Properties by Location - Updated Property 1\n',
    '2021-05-12T21:35:20.090Z workers [n4bju] Test executed: Patch Property 1 - Location\n',
    '2021-05-12T21:35:20.095Z workers [n4bju] Test executed: Patch Property 1 - Amenities\n',
    '2021-05-12T21:35:20.109Z workers [n4bju] Test executed: Patch Property 2 - Rejected Amenities\n',
    '2021-05-12T21:35:20.113Z workers [n4bju] Test executed: Patch Property 2 - Roles\n',
    '2021-05-12T21:35:20.117Z workers [n4bju] Test executed: Search Properties by Location - Patched Property 1\n',
    '2021-05-12T21:35:20.125Z workers [n4bju] Test executed: Filter SpaceType for Property 1\n',
    '2021-05-12T21:35:20.130Z workers [n4bju] Test executed: Filter List of SpaceTypes for Property 1 - 1 Result\n',
    '2021-05-12T21:35:20.134Z workers [n4bju] Test executed: Filter List of SpaceTypes for Property 1 - 2 Results\n',
    '2021-05-12T21:35:20.139Z workers [n4bju] Test executed: Filter List of SpaceTypes for Property 1 - By PropertyId\n',
    '2021-05-12T21:35:20.143Z workers [n4bju] Test executed: Filter List of SpaceTypes for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:35:20.147Z workers [n4bju] Test executed: Update Complete SpaceType for Property 1 - Wrong Property\n',
    '2021-05-12T21:35:20.152Z workers [n4bju] Test executed: Update Complete SpaceType for Property 1 - Missing Name\n',
    '2021-05-12T21:35:20.156Z workers [n4bju] Test executed: Update Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:35:20.160Z workers [n4bju] Test executed: Patch Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:35:20.164Z workers [n4bju] Test executed: Filter RatePlan for Property 1\n',
    '2021-05-12T21:35:20.170Z workers [n4bju] Test executed: Find RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:35:20.173Z workers [n4bju] Test executed: Filter List of RatePlans for Property 1\n',
    '2021-05-12T21:35:20.177Z workers [n4bju] Test executed: Filter List of RatePlans for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:35:20.182Z workers [n4bju] Test executed: Filter List of RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:35:20.191Z workers [n4bju] Test executed: Update Complete RatePlan for Property 1 - Wrong Property\n',
    '2021-05-12T21:35:20.195Z workers [n4bju] Test executed: Update Complete RatePlan for Property 1 - Missing Name\n',
    '2021-05-12T21:35:20.197Z workers [n4bju] Test executed: Update Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:35:20.199Z workers [n4bju] Test executed: Patch Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:35:20.205Z workers [n4bju] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id\n',
    '2021-05-12T21:35:20.208Z workers [n4bju] Test executed: Find RatePlans for Property 1 - Using SpaceType2 Id\n',
    '2021-05-12T21:35:20.211Z workers [n4bju] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id\n',
    '2021-05-12T21:35:20.214Z workers [n4bju] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id without Property Id\n',
    '2021-05-12T21:35:20.217Z workers [n4bju] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id\n',
    '2021-05-12T21:35:20.219Z workers [n4bju] Test executed: Filter SpaceTypeRate for Property 1 By SpaceType.id\n',
    '2021-05-12T21:35:20.222Z workers [n4bju] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:35:20.225Z workers [n4bju] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id - Wrong Property.id\n',
    '2021-05-12T21:35:20.228Z workers [n4bju] Test executed: Filter SpaceTypeRate1 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:35:20.231Z workers [n4bju] Test executed: Filter SpaceTypeRate2 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:35:20.238Z workers [n4bju] Test executed: Update Complete SpaceTypeRate for Property 1 using RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:35:20.244Z workers [n4bju] Test executed: Update Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:35:20.258Z workers [n4bju] Test executed: Patch Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:35:20.268Z workers [n4bju] Test executed: Patch SpaceTypeRatePeriods for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:35:20.716Z workers [n4bju] Run 75 test(s), skipped 0 test(s)\n',
    '2021-05-12T21:35:20.719Z workers [n4bju] Sandbox is responsive, closing it\n',
    '2021-05-12T21:35:20.720Z workers Starting run worker instance #0\n',
    '2021-05-12T21:35:20.723Z project Test run finished\n',
    '2021-05-12T21:35:20.726Z project Processed console.log entries\n',
    '2021-05-12T21:35:20.726Z project Processed loading sequences\n',
    '2021-05-12T21:35:20.729Z project Processed executed tests\n',
    '2021-05-12T21:35:20.774Z project Processed code coverage\n',
    '2021-05-12T21:35:20.822Z project Processed code trace\n',
    '2021-05-12T21:35:21.174Z project Test run result processed and sent to IDE\n',
    '2021-05-12T21:35:21.177Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:35:21.179Z uiService Outgoing message ui:testFilterChanged\n',
    '2021-05-12T21:35:21.183Z uiService Outgoing message ui:coverageChanged\n',
    '2021-05-12T21:35:21.198Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:35:21.208Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:35:21.224Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:35:21.234Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:35:21.240Z uiService Outgoing message ui:coverageChanged\n',
    '2021-05-12T21:35:22.049Z workers Started run worker instance (delayed) #0\n',
    '2021-05-12T21:35:55.538Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:55.550Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:55.551Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.288Z project Detected single test [Create Complete Partner 1] change\n',
    '2021-05-12T21:35:56.300Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.302Z project Test run started; run priority: 2\n',
    '2021-05-12T21:35:56.313Z workers Starting test run, priority: 2\n',
    '2021-05-12T21:35:56.314Z nodeRunner Starting sandbox [worker #0, session #jmluj]\n',
    '2021-05-12T21:35:56.315Z nodeRunner Preparing sandbox [worker #0, session #jmluj]\n',
    '2021-05-12T21:35:56.315Z nodeRunner Prepared sandbox [worker #0, session #jmluj]\n',
    '2021-05-12T21:35:56.315Z workers [worker #0, session #jmluj] Running tests in sandbox\n',
    '2021-05-12T21:35:56.323Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.328Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.329Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.329Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.329Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.330Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.343Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.350Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.350Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.351Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.352Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.352Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.369Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.373Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.373Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.373Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.374Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.374Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.386Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.389Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.389Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.391Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.391Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.392Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.407Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.422Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.422Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.423Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.423Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.424Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.443Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.446Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.457Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.457Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.458Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.458Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.478Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.481Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.481Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.482Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.483Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.483Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.503Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.507Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.507Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.508Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.509Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.510Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.523Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.531Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.531Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.532Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.533Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.533Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.548Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.552Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.552Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.552Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.553Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.553Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.571Z fs File changed in editor: test/chaincode.test.js\n',
    '2021-05-12T21:35:56.575Z workers Cancelling test run, cancel requester priority: 2, current run priority: 2\n',
    '2021-05-12T21:35:56.575Z project Test run was cancelled\n',
    '2021-05-12T21:35:56.576Z uiService Outgoing message ui:files\n',
    '2021-05-12T21:35:56.576Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.588Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.639Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.690Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.740Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.791Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.840Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.891Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.941Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:56.991Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.042Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.092Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.143Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.194Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.244Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.295Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.346Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.396Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.446Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.497Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.546Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.597Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.648Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.698Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.748Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.799Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.849Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.899Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:57.950Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.000Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.050Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.101Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.152Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.202Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.252Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.302Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.352Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.403Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.454Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.504Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.555Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.606Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.656Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.707Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.757Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.807Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.858Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.909Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:58.960Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.011Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.061Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.112Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.161Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.212Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.263Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.314Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.363Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.413Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.464Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.515Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.568Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.615Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.666Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.716Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.767Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.817Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.867Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.918Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:35:59.968Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.019Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.070Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.121Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.171Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.222Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.272Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.323Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.374Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.425Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.474Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.524Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.575Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:00.617Z workers [jmluj] Sandbox is responsive, closing it\n',
    '2021-05-12T21:36:00.618Z workers Starting run worker instance #0\n',
    '2021-05-12T21:36:00.620Z project Test run cancelled, re-queueing run data\n',
    '2021-05-12T21:36:00.621Z project Test run finished\n',
    '2021-05-12T21:36:00.621Z project Test run data re-queued\n',
    '2021-05-12T21:36:00.625Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:36:00.648Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:01.311Z project Detected single test [Create Complete Partner 1] change\n',
    '2021-05-12T21:36:01.329Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:01.330Z project Test run started; run priority: 2\n',
    '2021-05-12T21:36:01.333Z workers Starting test run, priority: 2\n',
    '2021-05-12T21:36:01.333Z nodeRunner Starting sandbox [worker #0, session #e77fc]\n',
    '2021-05-12T21:36:01.333Z nodeRunner Preparing sandbox [worker #0, session #e77fc]\n',
    '2021-05-12T21:36:01.343Z workers Started run worker instance (delayed) #0\n',
    '2021-05-12T21:36:01.343Z nodeRunner Prepared sandbox [worker #0, session #e77fc]\n',
    '2021-05-12T21:36:01.344Z workers [worker #0, session #e77fc] Running tests in sandbox\n',
    '2021-05-12T21:36:04.271Z workers [e77fc] Loaded 75 test(s)\n',
    '2021-05-12T21:36:04.897Z workers [e77fc] Test executed: Create Complete Partner 1\n',
    '2021-05-12T21:36:04.925Z workers [e77fc] Test executed: Update Complete Partner 1\n',
    '2021-05-12T21:36:04.952Z workers [e77fc] Test executed: Create Minimal Partner 2\n',
    '2021-05-12T21:36:04.975Z workers [e77fc] Test executed: Get Partner\n',
    '2021-05-12T21:36:06.320Z workers [e77fc] Test executed: Patch Minimal Partner 2 - Invalid CategoryTag\n',
    '2021-05-12T21:36:06.474Z workers [e77fc] Test executed: Patch Minimal Partner 2\n',
    '2021-05-12T21:36:07.111Z workers [e77fc] Test executed: Get All Partner List\n',
    '2021-05-12T21:36:07.119Z workers [e77fc] Test executed: Search Partners by Name\n',
    '2021-05-12T21:36:07.136Z workers [e77fc] Test executed: Search Partners by Category Tag - Match All\n',
    '2021-05-12T21:36:07.162Z workers [e77fc] Test executed: Search Partners by Category Tag - Match One\n',
    '2021-05-12T21:36:07.250Z workers [e77fc] Test executed: Search Partners by Category Tag and Name - Match\n',
    '2021-05-12T21:36:07.262Z workers [e77fc] Test executed: Search Partners by Category Tag and Name - No Match\n',
    '2021-05-12T21:36:07.280Z workers [e77fc] Test executed: Create Complete Property 1\n',
    '2021-05-12T21:36:07.295Z workers [e77fc] Test executed: Create Complete SpaceType1 for Property 1\n',
    '2021-05-12T21:36:07.312Z workers [e77fc] Test executed: Create Complete SpaceType2 for Property 1\n',
    '2021-05-12T21:36:07.407Z workers [e77fc] Test executed: Create Complete RatePlan for Property 1\n',
    '2021-05-12T21:36:07.433Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType1 at Property 1\n',
    '2021-05-12T21:36:07.448Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType2 at Property 1\n',
    '2021-05-12T21:36:07.466Z workers [e77fc] Test executed: Create Complete Property 2\n',
    '2021-05-12T21:36:07.480Z workers [e77fc] Test executed: Create Complete SpaceType3 for Property 2\n',
    '2021-05-12T21:36:07.497Z workers [e77fc] Test executed: Create Complete SpaceType4 for Property 2\n',
    '2021-05-12T21:36:07.506Z workers [e77fc] Test executed: Create Complete RatePlan for Property 2\n',
    '2021-05-12T21:36:07.672Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType3 at Property 2\n',
    '2021-05-12T21:36:07.687Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - SpaceType not at Property\n',
    '2021-05-12T21:36:07.699Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - RatePlan not at Property\n',
    '2021-05-12T21:36:07.720Z workers [e77fc] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - Success\n',
    '2021-05-12T21:36:07.730Z workers [e77fc] Test executed: Get Property\n',
    '2021-05-12T21:36:07.753Z workers [e77fc] Test executed: Get All Property List\n',
    '2021-05-12T21:36:07.805Z workers [e77fc] Test executed: Get All Filtered Property List\n',
    '2021-05-12T21:36:07.881Z workers [e77fc] Test executed: Get One Filtered Property List\n',
    '2021-05-12T21:36:07.918Z workers [e77fc] Test executed: Search Properties by Location - Property 1\n',
    '2021-05-12T21:36:07.938Z workers [e77fc] Test executed: Search Properties by Location - Distance - No Results\n',
    '2021-05-12T21:36:08.008Z workers [e77fc] Test executed: Search Properties by Location - Latitude - No Results\n',
    "2021-05-12T21:36:08.205Z workers [e77fc] Test executed: Update Property 1 - Property Doesn't Exist\n",
    '2021-05-12T21:36:08.309Z workers [e77fc] Test executed: Update Property 1 - Missing Settings Fields\n',
    '2021-05-12T21:36:08.317Z workers [e77fc] Test executed: Update Property 1 - Location\n',
    '2021-05-12T21:36:08.322Z workers [e77fc] Test executed: Patch Property 1 - PartnerMemberships\n',
    '2021-05-12T21:36:08.326Z workers [e77fc] Test executed: Search Properties by Location - Updated Property 1\n',
    '2021-05-12T21:36:08.330Z workers [e77fc] Test executed: Patch Property 1 - Location\n',
    '2021-05-12T21:36:08.334Z workers [e77fc] Test executed: Patch Property 1 - Amenities\n',
    '2021-05-12T21:36:08.354Z workers [e77fc] Test executed: Patch Property 2 - Rejected Amenities\n',
    '2021-05-12T21:36:08.364Z workers [e77fc] Test executed: Patch Property 2 - Roles\n',
    '2021-05-12T21:36:08.366Z workers [e77fc] Test executed: Search Properties by Location - Patched Property 1\n',
    '2021-05-12T21:36:08.369Z workers [e77fc] Test executed: Filter SpaceType for Property 1\n',
    '2021-05-12T21:36:08.373Z workers [e77fc] Test executed: Filter List of SpaceTypes for Property 1 - 1 Result\n',
    '2021-05-12T21:36:08.376Z workers [e77fc] Test executed: Filter List of SpaceTypes for Property 1 - 2 Results\n',
    '2021-05-12T21:36:08.379Z workers [e77fc] Test executed: Filter List of SpaceTypes for Property 1 - By PropertyId\n',
    '2021-05-12T21:36:08.382Z workers [e77fc] Test executed: Filter List of SpaceTypes for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:36:08.385Z workers [e77fc] Test executed: Update Complete SpaceType for Property 1 - Wrong Property\n',
    '2021-05-12T21:36:08.388Z workers [e77fc] Test executed: Update Complete SpaceType for Property 1 - Missing Name\n',
    '2021-05-12T21:36:08.391Z workers [e77fc] Test executed: Update Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:36:08.394Z workers [e77fc] Test executed: Patch Name Complete SpaceType for Property 1 - Success\n',
    '2021-05-12T21:36:08.398Z workers [e77fc] Test executed: Filter RatePlan for Property 1\n',
    '2021-05-12T21:36:08.402Z workers [e77fc] Test executed: Find RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:36:08.404Z workers [e77fc] Test executed: Filter List of RatePlans for Property 1\n',
    '2021-05-12T21:36:08.408Z workers [e77fc] Test executed: Filter List of RatePlans for Property 1 - Wrong PropertyId\n',
    '2021-05-12T21:36:08.411Z workers [e77fc] Test executed: Filter List of RatePlans for Property 1 - No PropertyId\n',
    '2021-05-12T21:36:08.414Z workers [e77fc] Test executed: Update Complete RatePlan for Property 1 - Wrong Property\n',
    '2021-05-12T21:36:08.418Z workers [e77fc] Test executed: Update Complete RatePlan for Property 1 - Missing Name\n',
    '2021-05-12T21:36:08.421Z workers [e77fc] Test executed: Update Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:36:08.422Z workers [e77fc] Test executed: Patch Name Complete RatePlan for Property 1 - Success\n',
    '2021-05-12T21:36:08.424Z workers [e77fc] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id\n',
    '2021-05-12T21:36:08.426Z workers [e77fc] Test executed: Find RatePlans for Property 1 - Using SpaceType2 Id\n',
    '2021-05-12T21:36:08.430Z workers [e77fc] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id\n',
    '2021-05-12T21:36:08.433Z workers [e77fc] Test executed: Find RatePlans for Property 1 - Using SpaceType1 Id and SpaceType2 Id without Property Id\n',
    '2021-05-12T21:36:08.434Z workers [e77fc] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id\n',
    '2021-05-12T21:36:08.436Z workers [e77fc] Test executed: Filter SpaceTypeRate for Property 1 By SpaceType.id\n',
    '2021-05-12T21:36:08.439Z workers [e77fc] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:36:08.442Z workers [e77fc] Test executed: Filter SpaceTypeRate for Property 1 By RatePlan.id and SpaceType.id - Wrong Property.id\n',
    '2021-05-12T21:36:08.447Z workers [e77fc] Test executed: Filter SpaceTypeRate1 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:36:08.453Z workers [e77fc] Test executed: Filter SpaceTypeRate2 for Property 1 By SpaceTypeRate.id\n',
    '2021-05-12T21:36:08.458Z workers [e77fc] Test executed: Update Complete SpaceTypeRate for Property 1 using RatePlan.id and SpaceType.id\n',
    '2021-05-12T21:36:08.464Z workers [e77fc] Test executed: Update Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:36:08.470Z workers [e77fc] Test executed: Patch Complete SpaceTypeRate for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:36:08.477Z workers [e77fc] Test executed: Patch SpaceTypeRatePeriods for Property 1 using SpaceTypeRate.id\n',
    '2021-05-12T21:36:08.916Z workers [e77fc] Run 75 test(s), skipped 0 test(s)\n',
    '2021-05-12T21:36:08.922Z workers [e77fc] Sandbox is responsive, closing it\n',
    '2021-05-12T21:36:08.923Z workers Starting run worker instance #0\n',
    '2021-05-12T21:36:08.926Z project Test run finished\n',
    '2021-05-12T21:36:08.930Z project Processed console.log entries\n',
    '2021-05-12T21:36:08.931Z project Processed loading sequences\n',
    '2021-05-12T21:36:08.935Z project Processed executed tests\n',
    '2021-05-12T21:36:08.973Z project Processed code coverage\n',
    '2021-05-12T21:36:09.027Z project Processed code trace\n',
    '2021-05-12T21:36:09.334Z project Test run result processed and sent to IDE\n',
    '2021-05-12T21:36:09.335Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:36:09.336Z uiService Outgoing message ui:testFilterChanged\n',
    '2021-05-12T21:36:09.341Z uiService Outgoing message ui:coverageChanged\n',
    '2021-05-12T21:36:09.342Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:09.342Z uiService Outgoing message ui:summary\n',
    '2021-05-12T21:36:09.352Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:36:09.363Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:36:09.376Z uiService Outgoing message ui:tests:someResultsUpdated\n',
    '2021-05-12T21:36:09.382Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:09.435Z uiService Outgoing message ui:busy\n',
    '2021-05-12T21:36:09.435Z project Test run started; run priority: 2\n',
    '2021-05-12T21:36:09.436Z testTask Test files from affected: 1, from deleted or manually requested: 0, from recently changed: 0, from loaded by: 0, from failing: 0\n',
    '2021-05-12T21:36:09.438Z workers Starting test run, priority: 2\n',
    '2021-05-12T21:36:09.438Z nodeRunner Starting sandbox [worker #0, session #jw7ev]\n',
    '2021-05-12T21:36:09.439Z nodeRunner Preparing sandbox [worker #0, session #jw7ev]\n',
    '2021-05-12T21:36:10.160Z workers Started run worker instance (delayed) #0\n',
    '2021-05-12T21:36:10.160Z nodeRunner Prepared sandbox [worker #0, session #jw7ev]\n',
    '2021-05-12T21:36:10.161Z workers [worker #0, session #jw7ev] Running tests in sandbox\n',
    '2021-05-12T21:36:13.223Z workers [jw7ev] Loaded 75 test(s)\n',
    '2021-05-12T21:36:13.844Z workers [jw7ev] Test executed: Create Complete Partner 1\n',
    '2021-05-12T21:36:13.876Z workers [jw7ev] Test executed: Update Complete Partner 1\n',
    '2021-05-12T21:36:13.893Z workers [jw7ev] Test executed: Create Minimal Partner 2\n',
    '2021-05-12T21:36:13.910Z workers [jw7ev] Test executed: Get Partner\n',
    '2021-05-12T21:36:15.405Z workers [jw7ev] Test executed: Patch Minimal Partner 2 - Invalid CategoryTag\n',
    '2021-05-12T21:36:15.856Z workers [jw7ev] Test executed: Patch Minimal Partner 2\n',
    '2021-05-12T21:36:16.018Z workers [jw7ev] Test executed: Get All Partner List\n',
    '2021-05-12T21:36:16.031Z workers [jw7ev] Test executed: Search Partners by Name\n',
    '2021-05-12T21:36:16.042Z workers [jw7ev] Test executed: Search Partners by Category Tag - Match All\n',
    '2021-05-12T21:36:16.066Z workers [jw7ev] Test executed: Search Partners by Category Tag - Match One\n',
    '2021-05-12T21:36:16.113Z workers [jw7ev] Test executed: Search Partners by Category Tag and Name - Match\n',
    '2021-05-12T21:36:16.149Z workers [jw7ev] Test executed: Search Partners by Category Tag and Name - No Match\n',
    '2021-05-12T21:36:16.166Z workers [jw7ev] Test executed: Create Complete Property 1\n',
    '2021-05-12T21:36:16.190Z workers [jw7ev] Test executed: Create Complete SpaceType1 for Property 1\n',
    '2021-05-12T21:36:16.285Z workers [jw7ev] Test executed: Create Complete SpaceType2 for Property 1\n',
    '2021-05-12T21:36:16.306Z workers [jw7ev] Test executed: Create Complete RatePlan for Property 1\n',
    '2021-05-12T21:36:16.322Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType1 at Property 1\n',
    '2021-05-12T21:36:16.335Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan1 and SpaceType2 at Property 1\n',
    '2021-05-12T21:36:16.350Z workers [jw7ev] Test executed: Create Complete Property 2\n',
    '2021-05-12T21:36:16.365Z workers [jw7ev] Test executed: Create Complete SpaceType3 for Property 2\n',
    '2021-05-12T21:36:16.373Z workers [jw7ev] Test executed: Create Complete SpaceType4 for Property 2\n',
    '2021-05-12T21:36:16.380Z workers [jw7ev] Test executed: Create Complete RatePlan for Property 2\n',
    '2021-05-12T21:36:16.554Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType3 at Property 2\n',
    '2021-05-12T21:36:16.563Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - SpaceType not at Property\n',
    '2021-05-12T21:36:16.573Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - RatePlan not at Property\n',
    '2021-05-12T21:36:16.593Z workers [jw7ev] Test executed: Create Complete SpaceTypeRate for RatePlan2 and SpaceType4 at Property 2 - Success\n',
    '2021-05-12T21:36:16.603Z workers [jw7ev] Test executed: Get Property\n',
    '2021-05-12T21:36:16.660Z workers [jw7ev] Test executed: Get All Property List\n',
    '2021-05-12T21:36:16.722Z workers [jw7ev] Test executed: Get All Filtered Property List\n',
    '2021-05-12T21:36:16.761Z workers [jw7ev] Test executed: Get One Filtered Property List\n'
  ]
}
@ArtemGovorov
Copy link
Member

Thanks for reporting the issue. It's now fixed and published in the latest core v1.0.1069.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants