Initial Save

This commit is contained in:
jackbeeby
2025-03-28 12:30:19 +11:00
parent e381994f19
commit d8773925e8
9910 changed files with 982718 additions and 0 deletions

36
node_modules/zen-observable/test/constructor.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
import assert from 'assert';
import { testMethodProperty } from './properties.js';
describe('constructor', () => {
it('throws if called as a function', () => {
assert.throws(() => Observable(() => {}));
assert.throws(() => Observable.call({}, () => {}));
});
it('throws if the argument is not callable', () => {
assert.throws(() => new Observable({}));
assert.throws(() => new Observable());
assert.throws(() => new Observable(1));
assert.throws(() => new Observable('string'));
});
it('accepts a function argument', () => {
let result = new Observable(() => {});
assert.ok(result instanceof Observable);
});
it('is the value of Observable.prototype.constructor', () => {
testMethodProperty(Observable.prototype, 'constructor', {
configurable: true,
writable: true,
length: 1,
});
});
it('does not call the subscriber function', () => {
let called = 0;
new Observable(() => { called++ });
assert.equal(called, 0);
});
});