blob: dbd7f643d4ef6b0139147ef872645236d774a4c2 [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());