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 6dfc5ee commit 451ccadCopy full SHA for 451ccad
test/runner.py
@@ -392,6 +392,11 @@ def configure():
392
def main(args):
393
options = parse_args(args)
394
395
+ if os.path.isfile(utils.path_from_root('package.json')):
396
+ os.remove(utils.path_from_root('package.json'))
397
+ if os.path.isfile(utils.path_from_root('package-lock.json')):
398
+ os.remove(utils.path_from_root('package-lock.json'))
399
+
400
# Some options make sense being set in the environment, others not-so-much.
401
# TODO(sbc): eventually just make these command-line only.
402
if os.getenv('EMTEST_SAVE_DIR'):
0 commit comments