Skip to content

Commit c39f821

Browse files
updated tests
1 parent 1f4b344 commit c39f821

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

changelog/0.16.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ v0.16.0
1313
- Complete code plugin refactoring
1414
- Improved completions performance using 'flow ide' command
1515
- Added "code screenshot" feature using [carbon](https://carbon.now.sh/)
16-
- updated flow-bin to 0.66.0
16+
- updated flow-bin to 0.67.1
1717
- Added initial support for Vue.js
1818
- Improved extract method feature
1919
- Improved completions detection from default_autocomplete.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"flow-bin": "0.66.0",
3+
"flow-bin": "0.67.1",
44
"flow-remove-types": "1.2.3",
55
"flow-typed": "2.2.3",
66
"jsdoc": "3.5.5"

tests/test_project.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ def tearDown(self):
3131
def test_project(self):
3232
self.window.run_command("javascript_enhancements_create_new_project")
3333
self.window.run_command("insert", {"characters": "empty"})
34-
yield 200
34+
yield 500
3535
self.window.run_command("keypress", {"key": "enter"})
36-
yield 200
36+
yield 500
3737
self.window.run_command("insert", {"characters": "javascript_enhancements_project_test"})
38-
yield 200
38+
yield 500
3939
self.window.run_command("keypress", {"key": "enter"})
40-
yield 200
40+
yield 500
4141
self.window.run_command("keypress", {"key": "enter"})
4242
yield 500
43-
self.assertEqual(project_settings, util.get_project_settings())
43+
self.assertDictEqual(project_settings, util.get_project_settings())
4444

0 commit comments

Comments
 (0)