11 lines
242 B
JavaScript
Raw Normal View History

import {describe, it} from 'test_lib/test_lib';
//import {Compiler} from 'core/compiler/compiler';
export function main() {
describe('compiler', function() {
it('should hello', function() {
print('I am working');
});
});
}