New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

circlecidemo

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circlecidemo - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

sample.circle.yml

3

package.json
{
"name": "circlecidemo",
"version": "0.0.3",
"version": "0.0.4",
"description": "demo project",

@@ -26,2 +26,3 @@ "main": "index.js",

"devDependencies": {
"phantom": "^0.7.2",
"istanbul": "^0.3.13",

@@ -28,0 +29,0 @@ "jasmine": "^2.2.1",

@@ -151,4 +151,26 @@ var health = require('../index');

});
it("Run phantomjs", function(done) {
var phantom = require('phantom');
phantom.create(function (ph) {
console.log("Phantom JS testing, circle has Phantom built in")
ph.createPage(function (page) {
page.open("http://www.google.com", function (status) {
console.log("opened google? ", status);
page.evaluate(function () { return document.title; }, function (result) {
console.log('Page title is ' + result);
ph.exit();
done();
});
});
});
});
});
});
createDelayedConnectionMockService = function(url, timeout) {

@@ -155,0 +177,0 @@ return nock(url)

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