12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
|
import {describe, it, expect} from 'test_lib/test_lib';
|
||
|
|
||
|
class Foo {}
|
||
|
|
||
|
export function main() {
|
||
|
describe('instanceof', function() {
|
||
|
it('should work', function() {
|
||
|
expect(new Foo() instanceof Foo);
|
||
|
});
|
||
|
});
|
||
|
}
|