import { testLog } from '@sprucelabs/spruce-skill-utils'
import AbstractSpruceTest, { test, assert } from '@sprucelabs/test-utils'

// Hey hey! 👋

// Can you believe how far we've come?

// When you're ready....

// And by ready, I mean, like have 2 hours to focus...

// Checkout the onboarding video Tay stumbled through making.

// I highlighly recommend you second screen this video and code along.

// And make popcorn 🍿

// https://youtu.be/SiUckNpPLag

// 🌲🤖

export default class RootViewControllerTest extends AbstractSpruceTest {
	@test()
	protected static async introduction() {
		const script: string[] = [
			'Hey there! 👋',
			"I'm so happy we've made it this far.",
			'I have gone ahead and created your first test.',
			"All you gotta do is click on 'behavior/RootViewController.test.ts' and then 'Open' to get started!",
			'See you soon! 🌲🤖',
			"PS: I'm going to fail this test now.",
		]

		for (const line of script) {
			testLog.info(line)
			await this.wait(3000)
		}

		assert.isFalse(true)
	}
}
