Updates
Some checks failed
Build / Build NPM Project (push) Failing after 6s
Build / Publish Docs (push) Failing after 6s
Build / Tag Version (push) Has been skipped

This commit is contained in:
2025-11-29 10:14:50 -05:00
parent bcc76c7561
commit 5b57b67542
6 changed files with 12 additions and 16 deletions

View File

@@ -45,6 +45,7 @@ describe('Path Events', () => {
expect(pe.all).toBe(true);
expect(pe.fullPath).toBe('**');
expect(pe.methods.has('*')).toBe(true);
expect(pe.hasAll('module:c', 'some/path:ud')).toBeTruthy();
});
it('parses empty string as none', () => {

View File

@@ -35,7 +35,7 @@ describe('Time Utilities', () => {
});
it('throws for unknown timezone', () => {
expect(() => formatDate('YYYY', new Date(), '???')).toThrowError(/Invalid timezone/);
expect(() => formatDate('YYYY', new Date(), '???')).toThrow(/Invalid timezone/);
});
it('handles timezone by offset number', () => {