Feature: asset management delete track assets

  @wip
  Scenario: track assets can be deleted successfully
    Given the client has uploaded a valid wav file to s3
    When the user /POST valid WAV asset
    Then the /POST asset response contains a 200 code
    And /GET asset response is [finished]
    And GET /asset/product/<product_id> contains a previously uploaded asset
    When the user tries to /DELETE track assets for a valid product
    Then GET /asset/product/<product_id> doesn't contain a previously uploaded asset

  @wip
  Scenario: 404 error should be obtained if an unexisting product_id was provided for /delete track asset
    When the user tries to /DELETE track assets for a non-existent product
    Then 404 error should be obtained from /DELETE track assets endpoint
