Slide 54
Slide 54 text
✅
module('Acceptance | overview', function(hooks) {
hooks.beforeEach()
Timecop.install();
Timecop.travel(new Date(2017, 9, 11, 11, 45)); // is a Monday
},
hooks.afterEach(){
Timecop.uninstall();
}
test('shows the weekday', async function(assert) {
await visit('main');
assert.dom('aside.week-day').hasText('Monday');
});
});