0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed failing test due to CSS change

No ref
This commit is contained in:
Sanne de Vries 2023-04-12 08:45:56 +01:00
parent bbcc7de31c
commit 2325a359bb

View file

@ -3,8 +3,8 @@ import {describe, it} from 'mocha';
import {expect} from 'chai';
describe('Unit: Helper: gh-count-down-characters', function () {
let validStyle = 'color: rgb(48, 207, 67);';
let errorStyle = 'color: rgb(226, 84, 64);';
let validStyle = 'color: rgb(48, 207, 67); font-weight: bold;';
let errorStyle = 'color: rgb(226, 84, 64); font-weight: bold;';
it('counts chars', function () {
let result = countDownCharacters(['test', 200]);