Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Register
Sign in
Toggle navigation
Menu
Open sidebar
Tiger Ton
osmosis
Commits
fbf3f08c
Commit
fbf3f08c
authored
2 years ago
by
Roman
Browse files
Options
Download
Email Patches
Plain Diff
chore(e2e): add vscode debug configurations
parent
1e80a2a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.vscode/launch.json
+30
-0
.vscode/launch.json
.vscode/tasks.json
+12
-0
.vscode/tasks.json
with
42 additions
and
0 deletions
+42
-0
.vscode/launch.json
0 → 100644
+
30
-
0
View file @
fbf3f08c
{
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"name"
:
"E2E: (make test-e2e-short)"
,
"type"
:
"go"
,
"request"
:
"launch"
,
"mode"
:
"test"
,
"program"
:
"${workspaceFolder}/tests/e2e"
,
"args"
:
[
"-test.timeout"
,
"30m"
,
"-test.run"
,
"IntegrationTestSuite"
,
"-test.v"
],
"buildFlags"
:
"-tags e2e"
,
"env"
:
{
"OSMOSIS_E2E"
:
"True"
,
"OSMOSIS_E2E_SKIP_IBC"
:
"true"
,
"OSMOSIS_E2E_SKIP_UPGRADE"
:
"true"
,
"OSMOSIS_E2E_SKIP_CLEANUP"
:
"true"
,
"OSMOSIS_E2E_SKIP_STATE_SYNC"
:
"true"
,
"OSMOSIS_E2E_UPGRADE_VERSION"
:
"v13"
,
"OSMOSIS_E2E_DEBUG_LOG"
:
"true"
,
},
"preLaunchTask"
:
"e2e-setup"
}
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.vscode/tasks.json
0 → 100644
+
12
-
0
View file @
fbf3f08c
{
//
See
https://go.microsoft.com/fwlink/?LinkId=
733558
//
for
the
documentation
about
the
tasks.json
format
"version"
:
"2.0.0"
,
"tasks"
:
[
{
"label"
:
"e2e-setup"
,
"type"
:
"shell"
,
"command"
:
"make e2e-setup"
}
]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets