Unverified Commit be756011 authored by Joe Haddad's avatar Joe Haddad
Browse files

Fix annotated var test

parent 445a56da
2 merge requests!12191Lim.Pisey.168:/Identified - We are currently investigating reports of missing build logs. The issue has been identified and a resolution is in progress. We will provide a further update when available.Mar 21, 09:02 UTC,!12853brikk
Showing with 2 additions and 1 deletion
+2 -1
......@@ -8,7 +8,8 @@ it('reads a typescript file with no syntax error', () => {
});
it('supports decorators', () => {
expect((App as any).annotated).toBe(true);
const app = new App();
expect((app as any).annotated).toBe(true);
expect(app.decorated).toBe(42);
});
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment