2015-02-05 18:58:15 -05:00
|
|
|
import {describe, it, expect} from 'angular2/test_lib';
|
2014-10-09 17:04:13 -04:00
|
|
|
|
|
|
|
class Foo {}
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('instanceof', function() {
|
|
|
|
it('should work', function() {
|
|
|
|
expect(new Foo() instanceof Foo);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|