Remove tic tac toe
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
function getStoredSecret() {
|
||||
try {
|
||||
return localStorage.getItem('secret') || '';
|
||||
} catch {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
export function createSecretInput() {
|
||||
const id = 'secret-input';
|
||||
|
||||
@@ -10,6 +18,7 @@ export function createSecretInput() {
|
||||
input.type = 'password';
|
||||
input.name = 'secret';
|
||||
input.placeholder = 'Enter your secret…';
|
||||
input.value = getStoredSecret();
|
||||
|
||||
label.htmlFor = id;
|
||||
label.textContent = 'Secret';
|
||||
|
||||
@@ -1,6 +1,36 @@
|
||||
import { describe, expect, it, beforeEach } from 'vitest';
|
||||
import { describe, expect, it, beforeEach, vi, afterEach } from 'vitest';
|
||||
import { screen } from '@testing-library/dom';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
import { createSecretInput } from './secret-input.js';
|
||||
|
||||
describe.todo('createSecretInput', async () => {});
|
||||
import '@testing-library/jest-dom/vitest';
|
||||
|
||||
describe('createSecretInput', async () => {
|
||||
beforeEach(() => {
|
||||
vi.spyOn(localStorage, 'getItem').mockReturnValue('test secret');
|
||||
vi.spyOn(localStorage, 'setItem');
|
||||
|
||||
document.body.innerHTML = '';
|
||||
document.body.appendChild(createSecretInput());
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
vi.restoreAllMocks();
|
||||
});
|
||||
|
||||
it('should have loaded the secret from localStorage', async () => {
|
||||
expect(screen.getByLabelText('Secret')).toHaveValue('test secret');
|
||||
expect(localStorage.getItem).toHaveBeenCalledWith('secret');
|
||||
});
|
||||
|
||||
it('should save the secret to localStorage', async () => {
|
||||
const input = screen.getByLabelText('Secret');
|
||||
const button = screen.getByText('Store Secret');
|
||||
|
||||
await userEvent.clear(input);
|
||||
await userEvent.type(input, 'new secret');
|
||||
await userEvent.click(button);
|
||||
|
||||
expect(localStorage.setItem).toHaveBeenCalledWith('secret', 'new secret');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
{
|
||||
"name": "tic-tac-toe",
|
||||
"version": "1.0.0",
|
||||
"description": "The classic game of Tic-Tac-Toe, but this time it's less fun because we're testing it.",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"test": "vitest"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/stevekinney/testing-javascript.git"
|
||||
},
|
||||
"author": "Steve Kinney <hello@stevekinney.net>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/stevekinney/testing-javascript/issues"
|
||||
},
|
||||
"homepage": "https://github.com/stevekinney/testing-javascript#readme",
|
||||
"devDependencies": {
|
||||
"@vitest/ui": "^2.1.1",
|
||||
"vite": "^5.4.5",
|
||||
"vitest": "^2.1.1"
|
||||
}
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
export default {
|
||||
test: {
|
||||
environment: 'node',
|
||||
},
|
||||
};
|
||||
14
package-lock.json
generated
14
package-lock.json
generated
@@ -11,7 +11,6 @@
|
||||
"workspaces": [
|
||||
"packages/css-configuration",
|
||||
"examples/calculator",
|
||||
"examples/tic-tac-toe",
|
||||
"examples/task-list",
|
||||
"examples/authentication",
|
||||
"examples/guess-the-number",
|
||||
@@ -131,8 +130,12 @@
|
||||
},
|
||||
"examples/logjam": {
|
||||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"devDependencies": {}
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@vitest/ui": "^2.1.1",
|
||||
"vite": "^5.4.5",
|
||||
"vitest": "^2.1.1"
|
||||
}
|
||||
},
|
||||
"examples/scratchpad": {
|
||||
"extraneous": true
|
||||
@@ -182,6 +185,7 @@
|
||||
},
|
||||
"examples/tic-tac-toe": {
|
||||
"version": "1.0.0",
|
||||
"extraneous": true,
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@vitest/ui": "^2.1.1",
|
||||
@@ -4754,10 +4758,6 @@
|
||||
"node": ">=0.8"
|
||||
}
|
||||
},
|
||||
"node_modules/tic-tac-toe": {
|
||||
"resolved": "examples/tic-tac-toe",
|
||||
"link": true
|
||||
},
|
||||
"node_modules/tinybench": {
|
||||
"version": "2.9.0",
|
||||
"dev": true,
|
||||
|
||||
@@ -28,7 +28,6 @@
|
||||
"workspaces": [
|
||||
"packages/css-configuration",
|
||||
"examples/calculator",
|
||||
"examples/tic-tac-toe",
|
||||
"examples/task-list",
|
||||
"examples/authentication",
|
||||
"examples/guess-the-number",
|
||||
|
||||
Reference in New Issue
Block a user