This file contains 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
// eslint-disable-next-line max-classes-per-file | |
interface EventExecutor<T, R> { | |
execute(input: T): R; | |
} | |
interface EventInterceptor<T, R> { | |
beforeFn(): EventExecutor<T, T>[]; | |
executeFn(): EventExecutor<T, R>; |
Feature
: Behavior Driven Development (BDD).
In order to
:- Avoid rework due to misunderstand and slow feedback among project manager, project owner, developer, QA/tester, sales, any guys join IT projects and customer.
And
make project information is transperant as human readable.And
keep software functions work as design after refactor/restructure code.
As
people (tech/non-tech)want to
get knowledge of BDD.Scenario
: BDD Overview
This file contains 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
git ls-files | grep \.sh | tr '\n' ' ' | |
git update-index --chmod=+x $(git ls-files | grep \.sh | tr '\n' ' ') |