Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was trying to work with it today in a scenario similar to this:

group('some group', (){
  //prints
  setUp(() => print('set up'));

  test('some test', (){
    window.requestLayoutFrame(
      expectAsync0((){
        Expect.isTrue(true);
      })
    );         
  });

  //doesn't print
  tearDown(() => print('tear down'));
});

In this example, the tearDown callback does not seem to be called.

When I place the tearDown() function before the unit test, then it does get called, but the output sequence is not what I would expect:

group('some group', (){
  setUp(() => print('set up'));

  tearDown(() => print('tear down'));

  test('some test', (){
    window.requestLayoutFrame(expectAsync0((){
        print('in unit test');
        Expect.isTrue(true);
    }));     
  });
});

Yields:

set up
tear down
in unit test
PASS: some group some test

Shouldn't the unit test output before the tear down?

SDK build 9881

share|improve this question

1 Answer

up vote 0 down vote accepted

Bug. Resolved: http://www.dartbug.com/4284

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.