This directory contains a Vue 3 test environment for Fluentity core functionality. It provides a sandboxed environment to test and validate the core features of Fluentity in a controlled setting.
- Test core Fluentity functionality in isolation
- Validate model implementations
- Provide a development environment for testing new features
- Serve as a reference implementation for integration
test/
├── src/ # Source files
│ ├── models/ # Test implementations of core models
│ ├── App.vue # Main test application component
│ └── main.ts # Application entry point
├── public/ # Static assets
└── vite.config.ts # Vite configuration
- Install dependencies:
npm install
- Start the development server:
npm run dev
- Build for production:
npm run build
- Each test implementation should be isolated and focused on specific functionality
- Use the models directory to implement test versions of core models
- Document any assumptions or test-specific behavior
- Keep the test environment as close as possible to production while maintaining simplicity
- VSCode with Volar extension
- Disable Vetur if installed
- TypeScript support is configured via
tsconfig.json
- TypeScript configuration is split between
tsconfig.json
,tsconfig.app.json
, andtsconfig.node.json
- Vite configuration can be customized in
vite.config.ts
- See Vite Configuration Reference for more details