Sacred Sword Teams:
Team 1
Egg, Vegeta, Purr, Powerhustler
Team 2
Toni, Nagi, Reopin, Banbu
Team 3
Yukitatsu, Donguri, Chikyapin, Danson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scalar DateTime | |
scalar Date | |
type Tag { | |
name: String | |
} | |
interface Sortable { | |
orderId: Int! | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import type { ReactElement } from 'react'; | |
import { describe } from '@asdgf/core'; | |
import { assert } from '@asdgf/testing-helpers/uvu/assert/index.js'; | |
import { composeStories, render, screen, waitFor, fireEvent } from 'test/render'; | |
import { StoriesToComposeStories } from 'types/storybook'; | |
import * as stories from './CurriculumTable.stories'; | |
const { DefaultStory } = composeStories(stories) as StoriesToComposeStories<typeof stories>; | |
async function renderWithOptions(story: ReactElement) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import '@testing-library/jest-dom/extend-expect' | |
import * as React from 'react' | |
import {render, screen} from '@testing-library/react' | |
import userEvent from '@testing-library/user-event' | |
import SimpleList from '../SimpleList' | |
test('can remove items from the list', () => { | |
render(<SimpleList />) | |
const deleteButton = fireEvent.click(screen.queryAllByTestId('delete-button')[0] as HTMLElement) | |
userEvent.click(deleteButton) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Coordinate = [number, number]; | |
function updateBoard(board: string[][], click: number[]): string[][] { | |
const boardCopy = [...board]; | |
const coordinates: Coordinate = [click[0], click[1]]; | |
const result = traverse(boardCopy, coordinates); | |
return result; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
status: 'fulfilled', | |
value: { | |
status: 200, | |
statusText: 'OK', | |
headers: [Object], | |
config: [Object], | |
request: [ClientRequest], | |
data: [Object] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-12-15T06:05:55.266Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-11-18T09:11:00.859Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import List from './List'; | |
import Item from './Item'; | |
export default () => { | |
const [input, setInput] = useState(''); | |
const [todos, setTodos] = useState([]); | |
return ( | |
<div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import List from './List'; | |
export default () => { | |
const [input, setInput] = useState(''); | |
let todos = []; | |
return ( | |
<div> | |
<input |
NewerOlder