mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
6d3a629690
- This mini helper wraps lodash template and supports `{...}` as the delimiters - It's designed to use and support the exact same patterns we already have in our en.json strings E.g. The {flagName} flag must be enabled in labs if you wish to use the \\{\\{{helperName}\\}\\} helper. - This allows us to get rid of our old, broken i18n helper and still keep some of the smart messaging we have setup - It also keeps the refactor surface area minimal
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
/**
|
|
* Custom Should Assertions
|
|
*
|
|
* Add any custom assertions to this file.
|
|
*/
|
|
|
|
// Example Assertion
|
|
// should.Assertion.add('ExampleAssertion', function () {
|
|
// this.params = {operator: 'to be a valid Example Assertion'};
|
|
// this.obj.should.be.an.Object;
|
|
// });
|