We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e26a21 commit 008ef58Copy full SHA for 008ef58
test/lwc-dev-server/index.e2e.test.ts
@@ -24,10 +24,10 @@ const logger = {
24
25
describe('lwc-dev-server e2e', () => {
26
const $$ = new TestContext();
27
- let spy: sinon.SinonSpy;
+ let processExitSpy: sinon.SinonSpy;
28
29
beforeEach(() => {
30
- spy = $$.SANDBOX.stub(process, 'exit');
+ processExitSpy = $$.SANDBOX.stub(process, 'exit');
31
});
32
33
afterEach(() => {
@@ -40,6 +40,6 @@ describe('lwc-dev-server e2e', () => {
40
41
expect(server).to.be.an.instanceOf(LWCServer);
42
server.stopServer();
43
- expect(spy.calledWith(0)).to.be.true;
+ expect(processExitSpy.calledWith(0)).to.be.true;
44
45
0 commit comments