Skip to content

Instantly share code, notes, and snippets.

@apucacao
Last active April 15, 2021 19:57
Show Gist options
  • Select an option

  • Save apucacao/652cd320dbae1dcd90511d5ea011d16b to your computer and use it in GitHub Desktop.

Select an option

Save apucacao/652cd320dbae1dcd90511d5ea011d16b to your computer and use it in GitHub Desktop.

Revisions

  1. apucacao revised this gist Apr 15, 2021. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,6 @@ Bulk member invitation form
    Upgrade pending
    succeeds -> Upgrade succeeded
    fails -> Upgrade failed
    dispatch update_subscription_done -> Upgrade succeeded
    Invitation pending
    succeeds -> Invitation succeeded
    fails -> Invitation failed
  2. apucacao revised this gist Apr 15, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,7 @@ Bulk member invitation form
    Upgrade pending
    succeeds -> Upgrade succeeded
    fails -> Upgrade failed
    dispatch update_subscription_done ->
    dispatch update_subscription_done -> Upgrade succeeded
    Invitation pending
    succeeds -> Invitation succeeded
    fails -> Invitation failed
  3. apucacao revised this gist Apr 15, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ Bulk member invitation form
    Must upgrade subscription
    modify list of emails to within subscription limits -> Ready to save
    click upgrade -> Upgrade pending
    dispatch buy_and_invite -> U
    dispatch buy_and_invite -> Upgrade pending
    Must choose new plan
    talk to sales and move to enterprise -> Start
    self-serve starter to pro -> Start
    @@ -18,6 +18,7 @@ Bulk member invitation form
    Upgrade pending
    succeeds -> Upgrade succeeded
    fails -> Upgrade failed
    dispatch update_subscription_done ->
    Invitation pending
    succeeds -> Invitation succeeded
    fails -> Invitation failed
  4. apucacao revised this gist Apr 15, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ Bulk member invitation form
    Must upgrade subscription
    modify list of emails to within subscription limits -> Ready to save
    click upgrade -> Upgrade pending
    click upgrade and invite ->
    dispatch buy_and_invite -> U
    Must choose new plan
    talk to sales and move to enterprise -> Start
    self-serve starter to pro -> Start
  5. apucacao revised this gist Apr 15, 2021. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -9,6 +9,7 @@ Bulk member invitation form
    Must upgrade subscription
    modify list of emails to within subscription limits -> Ready to save
    click upgrade -> Upgrade pending
    click upgrade and invite ->
    Must choose new plan
    talk to sales and move to enterprise -> Start
    self-serve starter to pro -> Start
  6. apucacao created this gist Apr 15, 2021.
    28 changes: 28 additions & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    Bulk member invitation form
    Start
    enter allowed number of emails -> Ready to save
    enter number of emails that exceeds plan limits -> Must upgrade plan
    enter number of emails that exceeds subscription limits -> Must upgrade subscription
    Must upgrade plan
    modify list of emails to within plan limits -> Ready to save
    upgrade plan -> Must choose new plan
    Must upgrade subscription
    modify list of emails to within subscription limits -> Ready to save
    click upgrade -> Upgrade pending
    Must choose new plan
    talk to sales and move to enterprise -> Start
    self-serve starter to pro -> Start
    Ready to save
    click invite -> Invitation pending
    Upgrade pending
    succeeds -> Upgrade succeeded
    fails -> Upgrade failed
    Invitation pending
    succeeds -> Invitation succeeded
    fails -> Invitation failed
    Upgrade succeeded
    click invite -> Invitation pending
    Upgrade failed
    reach out to support -> Start
    Invitation succeeded
    Invitation failed
    6 changes: 6 additions & 0 deletions SketchSystems_prototype.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    function render(model){
    let current_state_name = model.active_states[0].name;
    return $("h1",
    {style: {color: "darkBlue"}},
    `The current state is: ${current_state_name}`);
    }