@ffflorian/mock-udp 1.4.4 → 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.test.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.test.js +1 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
package/dist/cjs/index.test.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable no-magic-numbers */
|
|
2
2
|
import { assert, expect, describe, test, beforeEach } from 'vitest';
|
|
3
|
-
import * as dgram from '
|
|
3
|
+
import * as dgram from 'dgram';
|
|
4
4
|
import * as mockudp from './index.js';
|
|
5
5
|
const buffer = Buffer.from('hello world');
|
|
6
6
|
describe('mock-udp.intercept', () => {
|
package/dist/esm/index.js
CHANGED
package/dist/esm/index.test.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable no-magic-numbers */
|
|
2
2
|
import { assert, expect, describe, test, beforeEach } from 'vitest';
|
|
3
|
-
import * as dgram from '
|
|
3
|
+
import * as dgram from 'dgram';
|
|
4
4
|
import * as mockudp from './index.js';
|
|
5
5
|
const buffer = Buffer.from('hello world');
|
|
6
6
|
describe('mock-udp.intercept', () => {
|
package/package.json
CHANGED