Skip to content

Commit

Permalink
Merge pull request #10 from matepek/development
Browse files Browse the repository at this point in the history
[Added] Parsing Randomness
  • Loading branch information
matepek authored Oct 15, 2018
2 parents 81f19b1 + 42061cf commit f3c96a7
Show file tree
Hide file tree
Showing 12 changed files with 580 additions and 129 deletions.
27 changes: 20 additions & 7 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,27 @@
"request": "launch",
"name": "Catch2 adapter",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/out"]
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out"
]
},
{
"type": "node",
"request": "attach",
"name": "Catch2 worker",
"processId": "${command:PickProcess}"
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
}
}
30 changes: 11 additions & 19 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,16 @@
"tasks": [
{
"type": "npm",
"script": "build",
"problemMatcher": [
{
"owner": "ts",
"source": "typescript",
"fileLocation": "relative",
"pattern": [
{
"regexp": "^([^:]+):([0-9]+):([0-9]+) - (error) (.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
}
]
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.1]

### Added

- Parsing 'Randomness' values

### Changed

- Fixed `catch2TestExplorer.defaultRngSeed`

## [1.1.0]

### Added
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ Example:

- `--nothrow`

- Grouping by tags.
- Tests

## Contribution
Expand Down
Loading

0 comments on commit f3c96a7

Please sign in to comment.