Inital build
Some checks failed
Automated Container Build / build-and-push (push) Failing after 12s

This commit is contained in:
Elijah 2026-05-22 12:29:43 -07:00
parent fa2be029a2
commit 724d70e58b
3339 changed files with 1075535 additions and 0 deletions

64
frontend/node_modules/combine-errors/test.js generated vendored Normal file
View file

@ -0,0 +1,64 @@
'use strict'
/**
* Module Dependencies
*/
let assert = require('assert')
var errors = require('./')
/**
* Tests
*/
describe('combine-errors', function() {
it('should pass through single errors', function() {
var a = new TypeError('a')
assert.ok(errors(a).message === a.message)
assert.ok(errors(a).stack === a.stack)
assert.ok(errors(a) instanceof Error)
})
it('should create a multierror for multiple errors', function() {
var a = new TypeError('a')
var b = new Error('b')
var err = errors([a, b])
assert.ok(err instanceof Error)
assert.equal(err.message, 'a; b')
assert.ok(~err.stack.indexOf('TypeError: a'))
assert.ok(~err.stack.indexOf('Error: b'))
})
it('should group multiple errors that are the same into one', function() {
var a = new TypeError('a')
var err = errors([a, a])
assert.ok(err instanceof Error)
assert.equal(err.message, 'a')
assert.ok(~err.stack.indexOf('TypeError: a'))
})
it('should allow you to overwrite the message', function() {
var a = new TypeError('a')
var b = new Error('b')
var err = errors([a, b])
assert.ok(err instanceof Error)
err.message = err.message + ' (at: file)'
assert.equal(err.message, 'a; b (at: file)')
assert.ok(~err.stack.indexOf('TypeError: a'))
assert.ok(~err.stack.indexOf('Error: b'))
})
it('should compose nicely', function() {
var a = new SyntaxError('a')
var b = new TypeError('b')
var c = new Error('c')
var ab = errors([a, b])
var abc = errors([ab, c])
abc.message = abc.message + ' (at: file)'
assert.equal(abc.message, 'a; b; c (at: file)')
assert.ok(~abc.stack.indexOf('SyntaxError: a'))
assert.ok(~abc.stack.indexOf('TypeError: b'))
assert.ok(~abc.stack.indexOf('Error: c'))
assert.equal(abc.errors.length, 3)
})
})