Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

buster-autotest

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buster-autotest - npm Package Compare versions

Comparing version 0.3.0 to 0.4.0

9

lib/buster-autotest.js

@@ -31,5 +31,11 @@ var wt = require("fs-watch-tree");

function zeroPad(num) {
return num < 10 ? "0" + num : num;
}
function printHeader() {
var now = new Date();
var time = now.getHours() + ":" + now.getMinutes() + ":" + now.getSeconds();
var time = zeroPad(now.getHours()) + ":" +
zeroPad(now.getMinutes()) + ":" +
zeroPad(now.getSeconds());
util.puts(clearScreen + time + " Running tests");

@@ -90,3 +96,2 @@ }

running = false;
if (success(code) && files.length > 0) { runTests(); }
});

@@ -93,0 +98,0 @@ });

{
"name": "buster-autotest",
"version": "0.3.0",
"version": "0.4.0",
"description": "Watch files and run buster tests on save",

@@ -5,0 +5,0 @@ "homepage": "http://busterjs.org/docs/autotest",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc