This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('remote server node', () => { | |
beforeEach((done: () => void) => { | |
helper.start(done); | |
}); | |
afterEach(async (done: () => void) => { | |
await helper.stop(done); | |
}); | |
test('should be loaded', async (done: () => void) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Microsoft.Extensions.DependencyInjection; | |
namespace ViMobile.Utilities.DependencyInjection | |
{ | |
public static class IoCNew | |
{ | |
private static readonly ServiceCollection ServiceCollection; | |
static IoCNew() |