Last active
May 6, 2024 10:44
-
-
Save MichalBryxi/69b435a64217ee312bf7f5d21cbd9866 to your computer and use it in GitHub Desktop.
async-await-shenanigans
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Component from '@glimmer/component'; | |
import { action } from '@ember/object'; | |
import { tracked } from '@glimmer/tracking'; | |
export default class extends Component { | |
@tracked foo = undefined; | |
@tracked bar = undefined; | |
@action | |
async clickMe() { | |
console.log('start clickMe()'); | |
this.otherFunction1(); | |
this.otherFunction2(); | |
console.log('finish clickMe()'); | |
} | |
otherFunction1() { | |
this.foo = 'foo'; | |
} | |
async otherFunction2() { | |
this.bar = 'bar'; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Controller from '@ember/controller'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { module, test } from 'qunit'; | |
import { setupRenderingTest } from 'ember-qunit'; | |
import { click, render } from '@ember/test-helpers'; | |
import hbs from 'htmlbars-inline-precompile'; | |
module('my-component', function(hooks) { | |
setupRenderingTest(hooks); | |
test('it fails without await', async function(assert) { | |
await render(hbs`<MyComponent />`); | |
console.log('before click'); | |
await click('[data-test-button]'); | |
console.log('before assert'); | |
assert.equal(this.element.querySelector('[data-test-output]').textContent.trim(), 'bar'); | |
}); | |
test('it does not fail with await', async function(assert) { | |
await render(hbs`<MyComponent />`); | |
console.log('before click'); | |
await click('[data-test-button]'); | |
console.log('before assert'); | |
assert.equal(this.element.querySelector('[data-test-output]').textContent.trim(), 'bar'); | |
}); | |
}); | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Application from '../app'; | |
import config from '../config/environment'; | |
import { setApplication } from '@ember/test-helpers'; | |
import { assign } from '@ember/polyfills'; | |
import { start } from 'ember-qunit'; | |
let attributes = { | |
rootElement: '#test-root', | |
autoboot: false | |
}; | |
attributes = assign(attributes, config.APP); | |
let application = Application.create(attributes); | |
setApplication(application); | |
start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.17.1", | |
"EmberENV": { | |
"FEATURES": {}, | |
"_TEMPLATE_ONLY_GLIMMER_COMPONENTS": false, | |
"_APPLICATION_TEMPLATE_WRAPPER": true, | |
"_JQUERY_INTEGRATION": true | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": true | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js", | |
"ember": "3.18.1", | |
"ember-template-compiler": "3.18.1", | |
"ember-testing": "3.18.1" | |
}, | |
"addons": { | |
"@glimmer/component": "1.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment