angular-cn/modules/core/test/compiler/compiler_spec.js

11 lines
248 B
JavaScript

import {describe, it, expect} 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');
});
});
}