Skip to content

Commit 7b91f93

Browse files
committed
Updating preview video/image
1 parent f1e156b commit 7b91f93

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Change Log
22

3-
## 2.3.0 (February xx, 2018) [WIP]
3+
## 2.3.0 (March xx, 2018) [WIP]
44

55
* Feature: Atempting to auto detect if you use a known git web interface [#15](https://github.com/Sertion/vscode-gitblame/issues/15) (Thanks to [@Fidge123](https://github.com/Fidge123), [@sabrehagen](https://github.com/sabrehagen), [@henvic](https://github.com/henvic), and [@neerolyte](https://github.com/neerolyte))
66
* Fix: Merging `GitBlame` and `GitBlameController` to `GitBlame`
77
* Fix: Renaming `GitBlameFile*` to `GitFile*`
88
* Fix: Rewrote all the tests
99
* Fix: Updating dependencies
10+
* Fix: Updating preview video/image
1011
* Enhancment: Prettifying with [Prettier](https://prettier.io/)
1112

1213
## 2.2.0 (September 07, 2017)

images/GitBlamePreview.gif

-3.05 KB
Loading

test/execcommand.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import { execute } from "../src/util/execcommand";
44

55
suite("Execute Command", () => {
66
test("Simple command", async () => {
7-
const command = process.platform === "win32" ? "cd" : "pwd";
8-
const commandResult = await execute(command, []);
7+
const commandResult = await execute("git", ["--version"]);
98

109
assert.ok(commandResult);
1110
});

0 commit comments

Comments
 (0)