@bazel/jasmine
Advanced tools
Comparing version 0.27.2 to 0.27.3
@@ -5,3 +5,3 @@ { | ||
"license": "Apache 2.0", | ||
"version": "0.27.2", | ||
"version": "0.27.3", | ||
"repository": { | ||
@@ -20,3 +20,3 @@ "type" : "git", | ||
"npm_bazel_jasmine": { | ||
"version": "0.27.2", | ||
"version": "0.27.3", | ||
"rootPath": "." | ||
@@ -23,0 +23,0 @@ } |
@@ -40,4 +40,4 @@ const fs = require('fs'); | ||
// See https://docs.bazel.build/versions/master/test-encyclopedia.html#role-of-the-test-runner | ||
const TOTAL_SHARDS = process.env['TEST_TOTAL_SHARDS']; | ||
const SHARD_INDEX = process.env['TEST_SHARD_INDEX']; | ||
const TOTAL_SHARDS = Number(process.env['TEST_TOTAL_SHARDS']); | ||
const SHARD_INDEX = Number(process.env['TEST_SHARD_INDEX']); | ||
// Tell Bazel that this test runner supports sharding by updating the last modified date of the | ||
@@ -44,0 +44,0 @@ // magic file |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24826