- Add Strike API credentials configuration - Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates) - Add comprehensive operation descriptions for all resources - Include CLAUDE.MD documentation - Set up build configuration with TypeScript, ESLint, and Prettier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
666 B
JavaScript
25 lines
666 B
JavaScript
|
|
var sep = require('path').sep || '/';
|
|
var assert = require('assert');
|
|
var uri2path = require('../');
|
|
var tests = require('./tests.json');
|
|
|
|
describe('file-uri-to-path', function () {
|
|
|
|
Object.keys(tests).forEach(function (uri) {
|
|
|
|
// the test cases were generated from Windows' PathCreateFromUrlA() function.
|
|
// On Unix, we have to replace the path separator with the Unix one instead of
|
|
// the Windows one.
|
|
var expected = tests[uri].replace(/\\/g, sep);
|
|
|
|
it('should convert ' + JSON.stringify(uri) + ' to ' + JSON.stringify(expected),
|
|
function () {
|
|
var actual = uri2path(uri);
|
|
assert.equal(actual, expected);
|
|
});
|
|
|
|
});
|
|
|
|
});
|