Test ignore this test

Description

testing line break encoding

Judge

(async function*(context: Context): Challenge {

	yield context.registerTestCase(new TestCase("Line break encoding test", "Pass", {Text: "" + new TextEncoder().encode(context.code)}))
	
	return context.noFailures();
})

Example Code

1
2

Comments