В последних версиях TypeORM для доступа к данным необходимо обращаться к объекту DataSource для взаимодействия с БД.
public async findAll(): Promise<TrackEntity[]> {
return await this.dataSource.tracksRepository.find()
}
test('calls onPlayHandler when the Play button is clicked startgame COMP', () => {
const onClickPlay = jest.fn();
act(() => {
render(
<Provider store={store}>
<StartGame
title="Game Name"
description="Game Description"
onHowToPlayHandler={() => {}}
onPlayHandler={onClickPlay}
/>
</Provider>
)
});
const playButton = screen.getByText('startGame.play');
userEvent.click(playButton);
expect(onClickPlay).toHaveBeenCalled(); // expect(onClickPlay).toBeCalled()
});
client.on("message", (message) => {
if (message.author.bot || message.content.startsWith(prefix)) return;
if (prefix === "ping") {
message.reply(`pong ! ${Date.now() - message.createdTimestamp}ms`)
};
});
<input type="checkbox" checked>
- заведомо указываем, что checkbox будет выбранным когда я пытаюсь получить список городов с этими пользователями, у меня отпадают города в которых нет вообще пользователей
const getWorkersByCities = await City.findAll({
attributes: ['id', 'cityName'],
include: [{
model: Worker,
as: 'worker',
where: {
[Op.or]: [
{ deleted: false },
{ worker: [] }
]
}
attributes: ['id', 'name'],
}],
});
git remote add origin https://github.com/username/repo.git
- стоит указать удалённый репозиторий {% for user in users %}
<div class="user-info">
<div class="user-info-avatar" id="avatar"></div>
<div class="user-info-name" id="name"></div>
</div>
{% endfor %}
res, err := client.Do(req)
defer res.Body.Close()
if err != nil {
return nil, err
}
<input type="text" name="firstname" placeholder="Имя" pattern={'/^([\\w.%+-]+)@([\\w-]+\\.)+([\\w]{2,})$/i'} required />