Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
376 B
JavaScript
Executable File
14 lines
376 B
JavaScript
Executable File
"use strict";
|
|
var assert = require("assert"),
|
|
hash = require("./");
|
|
|
|
describe("hash", function() {
|
|
it("should hash \"Mary had a little lamb.\" to 1766333550", function() {
|
|
assert.equal(hash("Mary had a little lamb."), 1766333550);
|
|
});
|
|
|
|
it("should hash \"Hello, world!\" to 343662184", function() {
|
|
assert.equal(hash("Hello, world!"), 343662184);
|
|
});
|
|
});
|