Commit Graph

55 Commits

Author SHA1 Message Date
Benjamin Pasero
a7ed9c9572 🆙 playwright@0.11.0 (#90663) 2020-02-14 09:56:08 +01:00
Johannes Rieken
f704c339dc re-enable active editor test for electron-runner, https://github.com/microsoft/vscode/issues/90470 2020-02-13 12:54:12 +01:00
Benjamin Pasero
4978f52ec8 Flaky test: active editor not always correct... (#90470) 2020-02-11 18:29:18 +01:00
Benjamin Pasero
39370d9c98 tests - skip another flaky one for web 2020-02-11 15:51:45 +01:00
Benjamin Pasero
7c8b0844ec fix #87330 2020-01-14 10:48:10 +01:00
Robo
4c7431ca8d chore: Upgrade to electron 7.x (#83796)
* chore: bump electron@7.0.0

* chore: update api

* chore: Bump electron@7.0.1

* chore: bump electron@7.1.0

* chore: Bump electron@7.1.1

* chore: Bump electron@7.1.2

* FIXME: Skip webview tests that have improper shutdown path

* chore: Bump electron@7.1.3

* bump electron@7.1.5

* debug test failures

* chore: bump electron@7.1.7

* skip test for https://github.com/microsoft/vscode/issues/87330

Co-authored-by: Benjamin Pasero <benjamin.pasero@gmail.com>
2020-01-09 19:16:52 +05:30
Daniel Imms
5e804dc4ed Move terminal api tests into new file 2019-07-02 11:51:42 -07:00
Daniel Imms
3ce04754ad Rename runInBackground to hideFromUser
See #75278
2019-06-25 10:53:30 -07:00
Benjamin Pasero
356440d72d windows - disable terminal integration tests (#75689) 2019-06-18 13:48:30 +02:00
Daniel Imms
1f6bf9b92c Add some runInBackground terminal tests 2019-05-23 12:38:25 -07:00
Benjamin Pasero
053a32e2bb tests updates 2019-04-18 07:43:44 +02:00
Daniel Imms
68b2b6d4eb Revert "disable failing tests (#72465)
This reverts commit 5ac6601ab8.
2019-04-17 11:15:35 -07:00
Benjamin Pasero
5ac6601ab8 disable failing tests (#72465) 2019-04-17 08:43:54 +02:00
Benjamin Pasero
63b80d0a4f build - disable another flaky test 2019-03-26 18:07:25 +01:00
Benjamin Pasero
e764acdbb4 disable flaky test (#70887) 2019-03-21 10:36:24 +01:00
Daniel Imms
02423d3f15 Fix flaky terminal test 2019-03-18 17:07:57 -07:00
Daniel Imms
98eb895141 Implement onDidChangeTerminalDimensions
Fixes #55718
2019-02-05 04:44:13 -08:00
Matt Bierner
b4964bcf35 Replace some common index based for loops with for-of loops
Replaces many loops of the form:

```js
for (let i = 0; i < elements.length; ++i) {
    const i = elements[i];
   ...
}
```

with:

```js
for (const element of elements) {
    ...
}
```

Mix of a horrible regex based find/replace and manual touch ups
2019-01-03 19:11:18 -08:00
Christof Marti
c9cf18e109 Wait some more 2018-11-09 15:06:48 +01:00
Christof Marti
f9307094ba Try fix timing issues 2018-11-09 07:49:34 +01:00
Christof Marti
ee0815204c Fix timing issue (fixes #61748) 2018-10-29 11:30:25 +01:00
Christof Marti
d66f6ffc95 Fix timing issue (#61647) 2018-10-24 08:56:45 +02:00
Christof Marti
ab5bb7bf72 Revert "Disable failing tests"
This reverts commit 383d1417e6.
2018-10-24 08:56:45 +02:00
Rob Lourens
383d1417e6 Disable failing tests 2018-10-23 11:48:14 -07:00
Matt Bierner
03e65ebe47 Use await/async in tests 2018-10-04 19:01:34 -07:00
Matt Bierner
4c8e61c049 Remove "use strict" directives in extension tests
We compile with alwaysStrict so these are not needed
2018-10-02 15:59:42 -07:00
Matt Bierner
55567633b3 Enable no unused parameters in vscode-api tests 2018-10-01 16:12:05 -07:00
Benjamin Pasero
7b8c3383f9 💄 integration tests 2018-09-24 15:10:16 +02:00
Alex Ross
1ff175f094 Wait to signal to the extHostTerminalService that the terminal is opened until the terminal has a name. (#58983)
Also added a change listener for title. Fixes #53057
2018-09-21 14:08:38 -07:00
Christof Marti
f8606acf93 Fix test (#56137) 2018-09-06 15:31:51 +02:00
Christof Marti
5f88f89be5 Remove WinJS.Promise#cancel usage (#56137) 2018-09-05 09:13:12 +02:00
Daniel Imms
afec727ae3 Fix typos
Fixes #56058
2018-08-09 09:24:33 -07:00
Christof Marti
9aa90a526d Fix events firing multiple times (fixes #52894) 2018-06-27 17:09:17 +02:00
Daniel Imms
6d600f0661 Fix test compile 2018-06-26 12:50:41 -07:00
Daniel Imms
8237445753 Rename cols to columns
Fixes #52885
2018-06-26 12:45:36 -07:00
Christof Marti
6cba561685 Writeable active and selected items (#49340, fixes vscode-azure-account#67) 2018-06-20 10:27:37 +02:00
Daniel Imms
8d4466df93 Merge pull request #52143 from Microsoft/46192_terminal_renderer
Terminal renderer and activeTerminal APIs
2018-06-19 05:29:00 +08:00
Daniel Imms
8557d61188 Also test window.activeTerminal 2018-06-17 20:57:23 +08:00
Daniel Imms
7a21839e46 Add test for onDidChangeActiveTerminal 2018-06-17 20:56:40 +08:00
Daniel Imms
524e0f5d27 Add test for sendText -> onInput 2018-06-16 21:35:56 +02:00
Daniel Imms
970fca86e5 Add some more terminal API tests 2018-06-16 21:24:38 +02:00
Benjamin Pasero
2ec2cf597a API tweaks for grid editor (#51876)
* fix #51001

* add onDidChangeTextEditorViewColumn test that validates moving editor group

* adopt vscode.ViewColumn.Beside

* add vscode.setEditorLayout command
2018-06-14 17:17:39 +02:00
Christof Marti
f4b89e0b40 Action bar (#49340) 2018-06-13 16:57:55 +02:00
Christof Marti
965c1862b5 QuickInput Proposed API (#49340) 2018-06-12 18:23:25 +02:00
Benjamin Pasero
40c0aba09b Merge branch 'master' into ben/editor 2018-05-28 11:21:42 +02:00
Christof Marti
0662a71dfb Remove first cut of QuickInput API (#49340) 2018-05-28 09:30:39 +02:00
Benjamin Pasero
026fc297fb grid - open editors in active group when no ViewColumn is provided 2018-05-22 11:25:02 +02:00
Christof Marti
e142962e1b Multi-step input API (#49340) 2018-05-14 12:53:38 +02:00
Christof Marti
18c973953f Quick Pick tests (#49340) 2018-05-08 21:45:43 +02:00
Johannes Rieken
4c3cc3f721 Revert "comment out flaky tests"
This reverts commit efb435854a.
2018-05-04 15:16:10 +02:00