Fix failing specs

This commit is contained in:
Alfredo Sumaran 2017-02-23 19:22:26 -05:00
parent 2f681138dc
commit 1097724fbb
1 changed files with 9 additions and 5 deletions

View File

@ -3,11 +3,11 @@ const UserCallout = require('~/user_callout');
const USER_CALLOUT_COOKIE = 'user_callout_dismissed';
const Cookie = window.Cookies;
describe('UserCallout', function () {
describe('UserCallout', () => {
const fixtureName = 'static/user_callout.html.raw';
preloadFixtures(fixtureName);
beforeEach(() => {
beforeEach(function () {
loadFixtures(fixtureName);
this.userCallout = new UserCallout();
this.closeButton = $('.close-user-callout');
@ -16,17 +16,21 @@ describe('UserCallout', function () {
Cookie.set(USER_CALLOUT_COOKIE, 'false');
});
fit('shows when cookie is set to false', () => {
afterEach(function () {
Cookie.set(USER_CALLOUT_COOKIE, 'false');
});
it('shows when cookie is set to false', function () {
expect(Cookie.get(USER_CALLOUT_COOKIE)).toBeDefined();
expect(this.userCalloutContainer.is(':visible')).toBe(true);
});
fit('hides when user clicks on the dismiss-icon', () => {
it('hides when user clicks on the dismiss-icon', function () {
this.closeButton.click();
expect(Cookie.get(USER_CALLOUT_COOKIE)).toBe('true');
});
fit('hides when user clicks on the "check it out" button', () => {
it('hides when user clicks on the "check it out" button', function () {
this.userCalloutBtn.click();
expect(Cookie.get(USER_CALLOUT_COOKIE)).toBe('true');
});