Как расширить задачу «Пуск» новыми сценариями - PullRequest
0 голосов
/ 07 марта 2019

Я только что узнал о serenity-js и сейчас попробую.Я следую руководству и заметил следующий пример:

james.attemptsTo(
    Start.withAnEmptyTodoList(),
    AddATodoItem.called('Buy some milk')
)

Задача для Start:

export class Start implements Task {

    static withATodoListContaining(items: string[]) {       // static method to improve the readability
        return new Start(items);
    }

    performAs(actor: PerformsTasks): PromiseLike<void> {    // required by the Task interface
        return actor.attemptsTo(                            // delegates the work to lower-level tasks
            // todo: add each item to the Todo List
        );
    }

    constructor(private items: string[]) {                  // constructor assigning the list of items
    }                                                       // to a private field
}

Мне очень нравится этот синтаксис и я хотел бы продолжить эту настройку сболее стартовый сценарий.Каков был бы правильный подход для достижения этой цели?

1 Ответ

0 голосов
/ 09 марта 2019

Для тех, у кого такой же вопрос, я решил его (нашел аналогичную настройку в репозитории serenity-js):

// Start.ts
export class Start {
    public static withATodoListContaining = (items: string[]): StartWithATodoListContaining => new StartWithATodoListContaining(items);
}

// StartWithATodoListContaining.ts
export class StartWithATodoListContaining implements Task {

    static withATodoListContaining(items: string[]) {       
        return new StartWithATodoListContaining(items);
    }

    performAs(actor: PerformsTasks): PromiseLike<void> {    
        return actor.attemptsTo(                            
            // todo: add each item to the Todo List
        );
    }

    constructor(private items: string[]) {                  
    }                                                       
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...