Tested using: Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51) [GCC 4.2.1 (Apple Inc. build 5646)] on darwin
Mac OS X 10.6.2
node: Platform built on V8 to build network applications | |
git: Distributed revision control system | |
wget: Internet file retriever | |
yarn: JavaScript package manager | |
python3: Interpreted, interactive, object-oriented programming language | |
coreutils: GNU File, Shell, and Text utilities | |
awscli: Official Amazon AWS command-line interface | |
automake: Tool for generating GNU Standards-compliant Makefiles | |
youtube-dl: Download YouTube videos from the command-line | |
readline: Library for command-line editing |
/* eslint-env jest */ | |
'use strict' | |
const { read, keys } = require('../sreda') | |
const AWS = require('aws-sdk') | |
let ssm = new AWS.SSM() | |
var ssmPromise = { | |
promise: jest.fn().mockImplementation((request) => { | |
return new Promise((resolve, reject) => { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
#pagination { | |
display: inline-block; | |
vertical-align: middle; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.ace_breakpoint { /* our rectangle */ | |
width:50px; | |
height:16px; |
import {Component, Input, OnChanges} from "@angular/core"; | |
import {EmitterService} from "../services/emitter.service"; | |
@Component({ selector: 'dispatcher', template: '' }) | |
export class DispatcherComponent implements OnChanges { | |
@Input() id: string; | |
value = "dispatcher component value"; | |
ngOnChanges() { |