Skip to content

Commit

Permalink
Updated packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve-Fenton committed Sep 5, 2016
1 parent b4ab1e8 commit 61d4840
Show file tree
Hide file tree
Showing 16 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion tsUnit.External.Packager/Package.nuspec
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>tsUnit.external</id>
<version>2.0.3</version>
<version>2.0.4</version>
<title>tsUnit.external</title>
<authors>Steve Fenton</authors>
<owners>Steve Fenton</owners>
Expand Down
Expand Up @@ -83,8 +83,10 @@ var __extends = (this && this.__extends) || function (d, b) {
var parameters = dynamicTestClass[unitTestName].parameters;
var maxIndex = parameters.length - 1;
var index = parameterIndex;
while (index < parameters.length && (!testRunLimiter || !testRunLimiter.isParametersSetActive(index))) {
++index;
if (testRunLimiter) {
while (index < parameters.length && !testRunLimiter.isParametersSetActive(index)) {
++index;
}
}
if (index < parameters.length) {
return this.runSingleTestAsync(testClass, unitTestName, testsGroupName, parameters, index)
Expand Down
Expand Up @@ -93,9 +93,11 @@ export class TestAsync extends Test {
let parameters = dynamicTestClass[unitTestName].parameters;
let maxIndex = parameters.length - 1;
var index = parameterIndex;
while (index < parameters.length && (!testRunLimiter || !testRunLimiter.isParametersSetActive(index))) {
++index;
}
if (testRunLimiter) {
while (index < parameters.length && !testRunLimiter.isParametersSetActive(index)) {
++index;
}
}
if (index < parameters.length) {
return this.runSingleTestAsync(testClass, unitTestName, testsGroupName, parameters, index)
.then(() => this.runAllParameters(thisTest, unitTestName, index+1, testRunLimiter));
Expand Down
2 changes: 1 addition & 1 deletion tsUnit.Packager/Package.nuspec
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>tsUnit</id>
<version>2.0.3</version>
<version>2.0.6</version>
<title>tsUnit</title>
<authors>Steve Fenton</authors>
<owners>Steve Fenton</owners>
Expand Down
Binary file modified tsUnit.Packager/bin/Release/tsUnit.Packager.dll
Binary file not shown.
Binary file modified tsUnit.Packager/bin/Release/tsUnit.Packager.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion tsUnit.Packager/content/Scripts/tsUnit/package.json
Expand Up @@ -8,7 +8,7 @@
"unit",
"testing"
],
"version": "2.0.5",
"version": "2.0.6",
"homepage": "https://github.com/Steve-Fenton/tsUnit",
"bugs": "https://github.com/Steve-Fenton/tsUnit/issues",
"license": "Apache-2.0",
Expand Down
6 changes: 4 additions & 2 deletions tsUnit.Packager/content/Scripts/tsUnit/tsUnitAsync.js
Expand Up @@ -83,8 +83,10 @@ var __extends = (this && this.__extends) || function (d, b) {
var parameters = dynamicTestClass[unitTestName].parameters;
var maxIndex = parameters.length - 1;
var index = parameterIndex;
while (index < parameters.length && (!testRunLimiter || !testRunLimiter.isParametersSetActive(index))) {
++index;
if (testRunLimiter) {
while (index < parameters.length && !testRunLimiter.isParametersSetActive(index)) {
++index;
}
}
if (index < parameters.length) {
return this.runSingleTestAsync(testClass, unitTestName, testsGroupName, parameters, index)
Expand Down
8 changes: 5 additions & 3 deletions tsUnit.Packager/content/Scripts/tsUnit/tsUnitAsync.ts
Expand Up @@ -93,9 +93,11 @@ export class TestAsync extends Test {
let parameters = dynamicTestClass[unitTestName].parameters;
let maxIndex = parameters.length - 1;
var index = parameterIndex;
while (index < parameters.length && (!testRunLimiter || !testRunLimiter.isParametersSetActive(index))) {
++index;
}
if (testRunLimiter) {
while (index < parameters.length && !testRunLimiter.isParametersSetActive(index)) {
++index;
}
}
if (index < parameters.length) {
return this.runSingleTestAsync(testClass, unitTestName, testsGroupName, parameters, index)
.then(() => this.runAllParameters(thisTest, unitTestName, index+1, testRunLimiter));
Expand Down
Binary file not shown.
Binary file modified tsUnit.Packager/obj/Release/tsUnit.Packager.dll
Binary file not shown.
Binary file modified tsUnit.Packager/obj/Release/tsUnit.Packager.pdb
Binary file not shown.
Binary file modified tsUnit.Packager/tsUnit.2.0.3.nupkg.bak
Binary file not shown.
Binary file not shown.
Binary file added tsUnit.Packager/tsUnit.2.0.6.nupkg.bak
Binary file not shown.
9 changes: 1 addition & 8 deletions tsUnit.sln
@@ -1,14 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tsUnit", "tsUnit\tsUnit.csproj", "{ECF9ECAE-AD1C-42AB-A821-600A3882E46A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tsUnit.Packager", "tsUnit.Packager\tsUnit.Packager.csproj", "{0451BAEF-DF2E-4B98-8644-94EE9415E389}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tsUnit.External.Packager", "tsUnit.External.Packager\tsUnit.External.Packager.csproj", "{E31C1A48-7177-49CB-9690-85C6D4EA05A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tsUnit.Examples", "tsUnit.Examples\tsUnit.Examples.csproj", "{41008459-C342-4DE4-ABD3-1076CF50D3CF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{1AAB0A16-1431-48E2-9AD7-5E915E9BA57F}"
Expand Down Expand Up @@ -37,10 +35,6 @@ Global
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0451BAEF-DF2E-4B98-8644-94EE9415E389}.Release|Any CPU.Build.0 = Release|Any CPU
{E31C1A48-7177-49CB-9690-85C6D4EA05A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E31C1A48-7177-49CB-9690-85C6D4EA05A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E31C1A48-7177-49CB-9690-85C6D4EA05A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E31C1A48-7177-49CB-9690-85C6D4EA05A7}.Release|Any CPU.Build.0 = Release|Any CPU
{41008459-C342-4DE4-ABD3-1076CF50D3CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41008459-C342-4DE4-ABD3-1076CF50D3CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41008459-C342-4DE4-ABD3-1076CF50D3CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -55,7 +49,6 @@ Global
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{0451BAEF-DF2E-4B98-8644-94EE9415E389} = {264E5159-8DD7-49F0-B2F7-9222D3365FCF}
{E31C1A48-7177-49CB-9690-85C6D4EA05A7} = {264E5159-8DD7-49F0-B2F7-9222D3365FCF}
{41008459-C342-4DE4-ABD3-1076CF50D3CF} = {1AAB0A16-1431-48E2-9AD7-5E915E9BA57F}
{20C55C8A-BDD2-43D8-8B18-4D17F468706F} = {1AAB0A16-1431-48E2-9AD7-5E915E9BA57F}
EndGlobalSection
Expand Down

0 comments on commit 61d4840

Please sign in to comment.