From 4be8adf2276a5ac3963a2d5bb0c10479dd9e1e71 Mon Sep 17 00:00:00 2001 From: Ilya Date: Sat, 21 May 2022 19:35:19 +0000 Subject: [PATCH 1/2] Minor changes to test in codespaces --- .gitignore | 3 ++- .vscode/launch.json | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 334384f..8dc7d68 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules test package-lock.json -.idea \ No newline at end of file +.idea +tests \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..1299af3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "pwa-node", + "request": "launch", + "name": "Launch Program", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/tests/index.js" + } + ] +} \ No newline at end of file From b402a860f62208ac9ef913b2536a2fe7bca4dc56 Mon Sep 17 00:00:00 2001 From: Ilya Date: Mon, 1 Aug 2022 15:54:35 +0300 Subject: [PATCH 2/2] Delete launch.json --- .vscode/launch.json | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 1299af3..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "pwa-node", - "request": "launch", - "name": "Launch Program", - "skipFiles": [ - "/**" - ], - "program": "${workspaceFolder}/tests/index.js" - } - ] -} \ No newline at end of file