Dmytro Shylovskyi

Results 4 issues of Dmytro Shylovskyi

I use your lib with Zend Framework 1.x, but after your lib has done it's work I need to add some info to session, but session is already closed. Class...

I have tiny component: ``` import Component from '@ember/component'; import { inject as service } from '@ember-decorators/service'; export default class Switcher extends Component { @service i18n; init() { super.init(...arguments); if(!this.options)...

I use `Ember-CLI 3.7.1` and today during the build I started to get the next errors: > 11:40:27 Build Error (broccoli-persistent-filter:CleanCSSFilter) in assets/frontend.css > 11:40:27 > 11:40:27 2 errors found...

needs confirmation

Hi, I've started with acceptance tests in Ember.js and wrote simple test ```javascript test('visit teacher', async function(assert) { await visit('/teacher/6'); assert.ok(find('h1.name'), 'Ричард_test'); }); ``` And when I start test I...