// // Replace substring // @include describe("[function] replace-substring") { $string: "this is a string"; @include it("should expect the substring to be updated inside of string") { @include should(expect( flint-replace-substring($string, "a", "an awesome")), to(be("this is an awesome string")) ); } }