Commit Graph

73 Commits

Author SHA1 Message Date
Logan Ramos
5d7f4d3461 Add todo and remove test.only 2021-09-03 14:29:28 -04:00
Logan Ramos
22ca6611bd Add get tabs tests 2021-09-03 13:47:01 -04:00
Matt Bierner
ab8e743520 Organize imports in ext tests 2021-08-11 16:55:51 -07:00
Benjamin Pasero
159479eb5a Allow to show status bar entries with an id and name (fix #74972) 2021-05-19 14:03:37 +02:00
Logan Ramos
72aa675fc9 Update API tests to strict equal 2021-05-04 14:59:03 -04:00
Johannes Rieken
2f62eb0906 ignore focus dependent test also on GHA, fixes https://github.com/microsoft/vscode/issues/120355 2021-04-06 16:08:25 +02:00
Johannes Rieken
5236d34460 run active editor test only when having focus 2021-02-15 11:40:21 +01:00
Johannes Rieken
46cf57b264 a bunch of failing tests 2021-02-01 12:01:32 +01:00
ChaseKnowlden
e8760a5d6c Fix capitalization of GitHub org 2020-09-17 11:43:03 +02:00
Matt Bierner
d1b49cd8b9 Adding more explicit typings for TS 4.1 new Promise logic 2020-09-16 11:58:01 -07:00
Christof Marti
d08e158b8d Investigate #104554 2020-08-31 16:30:58 +02:00
Johannes Rieken
1261e43fc1 don't run focus-dependent test on build machines, https://github.com/microsoft/vscode/issues/100828 2020-07-07 10:21:52 +02:00
Johannes Rieken
f2d49ea57e add debug logging for https://github.com/microsoft/vscode/issues/100828 2020-06-23 13:19:31 +02:00
Christof Marti
3d93daf7ca Not only (#70887) 2020-06-23 10:22:21 +02:00
Sandeep Somavarapu
434dc1bb66 Disabled as it is failing in build @jrieken #100828 2020-06-23 10:15:29 +02:00
Christof Marti
0a8c1aea39 Update fix (#70887) 2020-06-22 17:58:04 +02:00
Christof Marti
4242275cb1 Fix tests (fixes #70887) 2020-06-22 14:02:42 +02:00
Benjamin Pasero
c0eea2a712 tests - disable terminal integration tests for web 2020-03-19 09:37:17 +01:00
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