Hi, I’ve been looking for information about how to specify resources in the fixtures/files directory in my fixtures YAML files. For example, if I have the following fixture in products.yml:
one:
title: MyString
description: MyText
image_url: MyString
price: 9.99
And I want to reference the file image.png in the fixtures/files directory, so that when the test runs that URL and image are available. How can i do that?
Thanks.