Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
1.1.0 (#36)
  • Loading branch information
karanjitsingh committed Feb 20, 2019
1 parent a1ffe32 commit 5c2e554
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jstestadapter",
"version": "1.0.12",
"version": "1.1.0",
"description": "",
"bundledDependencies": [
"rewire",
Expand Down
2 changes: 1 addition & 1 deletion src/JSTest/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ internal static class Constants
public const string VsTestConnectionTimeout = "VsTestConnectionTimeout";
public const int MessageProtocolVersion = 1;
public const int StreamBufferSize = 16384;
public const string JSTestVersionInfo = "1.0.12";
public const string JSTestVersionInfo = "1.1.0";

public static class TestFrameworkStrings
{
Expand Down
4 changes: 1 addition & 3 deletions test/JSTest.AcceptanceTests/BaseFrameworkTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ protected static void InstallNpmPackage(string package, string packageVersion =
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.WorkingDirectory = BaseFrameworkTest.testRepoPath;
startInfo.Arguments = $"/C npm install {package}{ (packageVersion != "" ? $"@{packageVersion}" : "") } --silent";
startInfo.Arguments = $"/C npm install --prefix ./ {package}{ (packageVersion != "" ? $"@{packageVersion}" : "") }";
startInfo.RedirectStandardError = true;
startInfo.RedirectStandardOutput = true;

Expand Down Expand Up @@ -171,8 +171,6 @@ protected static void InitializeBase(string package, string frameworkName, strin
BaseFrameworkTest.frameworkPackage = package;
BaseFrameworkTest.frameworkName = frameworkName;
BaseFrameworkTest.frameworkItemFolder = itemFolder;


}

#endregion
Expand Down

0 comments on commit 5c2e554

Please sign in to comment.