mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
27 lines
556 B
JavaScript
27 lines
556 B
JavaScript
const foo = () => {
|
|
return new Promise(resolve => {
|
|
setTimeout(() => {
|
|
console.log('---------------------------------- RESOLVING');
|
|
resolve();
|
|
}, 100);
|
|
});
|
|
};
|
|
|
|
xdescribe('test spec', function testSpec() {
|
|
// it("has 1 failure", () => {
|
|
// expect(false).toBe(true)
|
|
// });
|
|
|
|
it('is async', () => {
|
|
const p = foo().then(() => {
|
|
console.log('THEN');
|
|
expect(true).toBe(true);
|
|
});
|
|
advanceClock(200);
|
|
return p;
|
|
});
|
|
|
|
// it("has another failure", () => {
|
|
// expect(false).toBe(true)
|
|
// });
|
|
});
|