I have a problem with my bundles. Files .min is not being generated as reported on this link.
I have to create a test for it. How to do this?
[TestInitialize]
public void Setup()
{
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
[TestMethod, Owner("Bundles")]
public void Deve_realizar_bundle_arquivos_min()
{
// Arrange
// Act
var bundle = BundleTable.Bundles.GetBundleFor("~/Scripts");
// Assert
// How to check if file "jquery.pnotify.min.js" is in bundle??
}