Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('instantiated with instruction type', function () {
const container = setup();
const sut: IInstructionRenderer = new TranslationParametersBindingRenderer(container.get(IExpressionParser), container.get(IObserverLocator));
assert.equal(sut.instructionType, TranslationParametersInstructionType);
});
it('#render add the paramExpr to the existing TranslationBinding for the target element', function () {
const container = setup();
const sut: IInstructionRenderer = new TranslationParametersBindingRenderer(container.get(IExpressionParser), container.get(IObserverLocator));
const expressionParser = container.get(IExpressionParser);
const targetElement = DOM.createElement('span');
const binding = new TranslationBinding(targetElement, container.get(IObserverLocator), container);
const renderable = ({ bindings: [binding] } as unknown as IController);
const paramExpr = expressionParser.parse('{foo: "bar"}', BindingType.BindCommand);
const callBindingInstruction: ICallBindingInstruction = { from: paramExpr } as unknown as ICallBindingInstruction;
sut.render(
LifecycleFlags.none,
DOM,
container,
renderable,
targetElement,
callBindingInstruction
);