fix(tests): Fix outdated import paths in test files for dcrouter and ratelimiter modules
This commit is contained in:
parent
b61de33ee0
commit
747478f0f9
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-05-08 - 2.8.2 - fix(tests)
|
||||||
|
Fix outdated import paths in test files for dcrouter and ratelimiter modules
|
||||||
|
|
||||||
|
- Updated dcrouter import from '../ts/dcrouter/index.js' to '../ts/classes.dcrouter.js'
|
||||||
|
- Updated ratelimiter import from '../ts/mta/classes.ratelimiter.js' to '../ts/mail/delivery/classes.ratelimiter.js'
|
||||||
|
|
||||||
## 2025-05-08 - 2.8.1 - fix(readme)
|
## 2025-05-08 - 2.8.1 - fix(readme)
|
||||||
Update readme with consolidated email system improvements and modular directory structure
|
Update readme with consolidated email system improvements and modular directory structure
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import {
|
|||||||
type IEmailConfig,
|
type IEmailConfig,
|
||||||
type EmailProcessingMode,
|
type EmailProcessingMode,
|
||||||
type IDomainRule
|
type IDomainRule
|
||||||
} from '../ts/dcrouter/index.js';
|
} from '../ts/classes.dcrouter.js';
|
||||||
|
|
||||||
tap.test('DcRouter class - basic functionality', async () => {
|
tap.test('DcRouter class - basic functionality', async () => {
|
||||||
// Create a simple DcRouter instance
|
// Create a simple DcRouter instance
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { tap, expect } from '@push.rocks/tapbundle';
|
import { tap, expect } from '@push.rocks/tapbundle';
|
||||||
import { RateLimiter } from '../ts/mta/classes.ratelimiter.js';
|
import { RateLimiter } from '../ts/mail/delivery/classes.ratelimiter.js';
|
||||||
|
|
||||||
tap.test('RateLimiter - should be instantiable', async () => {
|
tap.test('RateLimiter - should be instantiable', async () => {
|
||||||
const limiter = new RateLimiter({
|
const limiter = new RateLimiter({
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformservice',
|
name: '@serve.zone/platformservice',
|
||||||
version: '2.8.1',
|
version: '2.8.2',
|
||||||
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformservice',
|
name: '@serve.zone/platformservice',
|
||||||
version: '2.8.1',
|
version: '2.8.2',
|
||||||
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user