Skip to content

Commit

Permalink
[Tests] switch from tap to tape
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Oct 12, 2022
1 parent 6e6963b commit d4681ac
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 23 deletions.
45 changes: 23 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
{
"name" : "buffer-equal",
"description" : "return whether two buffers are equal",
"version" : "1.0.0",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/node-buffer-equal.git"
"name": "buffer-equal",
"description": "return whether two buffers are equal",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/substack/node-buffer-equal.git"
},
"main" : "index.js",
"keywords" : [
"main": "index.js",
"keywords": [
"buffer",
"equal"
],
"directories" : {
"example" : "example",
"test" : "test"
"directories": {
"example": "example",
"test": "test"
},
"scripts" : {
"test" : "tap test/*.js"
"scripts": {
"tests-only": "tape 'test/**/*.js'",
"test": "npm run tests-only"
},
"devDependencies" : {
"tap" : "0.2.4"
"devDependencies": {
"tape": "^5.6.1"
},
"engines" : {
"node" : ">=0.4.0"
"engines": {
"node": ">=0.4"
},
"license" : "MIT",
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
"license": "MIT",
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
}
}
4 changes: 3 additions & 1 deletion test/eq.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use strict';

var bufferEqual = require('../');
var test = require('tap').test;
var test = require('tape');

test('equal', function (t) {
var eq = bufferEqual(
Expand Down

0 comments on commit d4681ac

Please sign in to comment.