blob: 78575ad5373537d51cdc77530979d25c706e767d [file] [log] [blame] [raw]
import {ITestable} from './frontend-testing.interfaces';
import {assert} from 'chai';
class HelloWorldTests implements ITestable {
public readonly description: string = 'HelloWorld';
public async run() {
const person = true;
assert.equal(person, true);
}
}
window.compilerExplorerFrontendTesting.add(new HelloWorldTests());