We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f78818 commit 3b3815eCopy full SHA for 3b3815e
karma.conf.js
@@ -2,6 +2,9 @@ var webpack = require('webpack')
2
var path = require('path')
3
4
module.exports = function (config) {
5
+ if (process.env.RELEASE)
6
+ config.singleRun = true
7
+
8
// Browsers to run on BrowserStack
9
var customLaunchers = {
10
BS_Chrome: {
scripts/release.sh
@@ -1,4 +1,5 @@
1
#!/bin/bash -e
+export RELEASE=1
if ! [ -e scripts/release.sh ]; then
echo >&2 "Please run scripts/release.sh from the repo root"
@@ -26,7 +27,7 @@ validate_semver $next_version
26
27
28
next_ref="v$next_version"
29
-npm test -- --single-run
30
+npm test
31
32
update_version 'package.json' $next_version
33
0 commit comments