作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 Angular 上运行测试,但使用 ngx-socket-io 的套接字服务失败。它适用于开发,但不适用于测试。它没有正确创建组件。
我的服务.spec.ts
import { TestBed } from '@angular/core/testing';
import { SocketService } from './socket.service';
describe('SocketService', () => {
let service: SocketService;
beforeEach(() => {
TestBed.configureTestingModule({
});
service = TestBed.inject(SocketService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
我的服务
import { Injectable } from '@angular/core';
import {Socket} from 'ngx-socket-io';
@Injectable({
providedIn: 'root'
})
export class SocketService {
constructor(private socket: Socket) { }
getD1Data() {
return this.createObserver('d1');
}
private createObserver(event: string) {
return this.socket.fromEvent(event);
}
我尝试添加提供程序 [WrappedSocket] 说实话,这是一个自动修复选项,但这会导致更多错误。
import {WrappedSocket} from 'ngx-socket-io/src/socket-io.service';
describe('SocketService', () => {
let service: SocketService;
beforeEach(() => {
TestBed.configureTestingModule({
providers: [WrappedSocket]
});
service = TestBed.inject(SocketService);
});
Error: ./src/app/modules/socket.service.spec.ts
Module not found: Error: Can't resolve 'ngx-socket-io/src/socket-io.service' in 'C:\Users\catha\project - Copy\src\app\modules'
考虑到它是自动填充,我实际上不确定它怎么可能存在。
关于如何解决这个问题有什么想法吗?我尝试了一系列提供程序 [Socket] 、 [SocketIOModule] 但似乎没有任何效果
最佳答案
我在一台机器上遇到了同样的问题,但在另一台机器上没有遇到这个问题。我在两台机器上都有完全相同版本的软件包。我做了一些不同的处理,以避免直接使用 ngx-socket-io
包中的可注入(inject) Socket
:
app-socket.service.ts
:import { Injectable } from '@angular/core';
import { Socket, SocketIoConfig } from 'ngx-socket-io';
const config: SocketIoConfig = {
url: 'http://127.0.0.1:8000',
options: {
autoConnect: false
}
};
@Injectable({
providedIn: 'root'
})
export class SocketService extends Socket {
constructor() {
super(config)
}
}
app.module.ts
中我提供了一个提供程序: providers: [
SocketService
],
constructor(
private socket: SocketService
)
它有效!
关于 Angular Testing ,socket.io "NullInjectorError: No provider for WrappedSocket",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67463232/
我正在 Angular 上运行测试,但使用 ngx-socket-io 的套接字服务失败。它适用于开发,但不适用于测试。它没有正确创建组件。 Test failure 我的服务.spec.ts imp
我使用 ngx-socket-io,它在开发中运行良好。但是我在运行 ng 测试 时遇到了问题。 它给我错误 NullInjectorError: No provider for WrappedSoc
我是一名优秀的程序员,十分优秀!